Makefile 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #
  2. # Copyright (C) 2015-2016 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=ipaddress
  9. PKG_VERSION:=1.0.17
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://pypi.python.org/packages/bb/26/3b64955ff73f9e3155079b9ed31812afdfa5333b5c76387454d651ef593a
  13. PKG_MD5SUM:=8bbf0326719fafb1f453921ef96729fe
  14. PKG_BUILD_DEPENDS:=python python-setuptools
  15. PKG_LICENSE:=Python-2.0
  16. PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
  17. include $(INCLUDE_DIR)/package.mk
  18. $(call include_mk, python-package.mk)
  19. define Package/python-ipaddress
  20. SECTION:=lang
  21. CATEGORY:=Languages
  22. SUBMENU:=Python
  23. TITLE:=python-ipaddress
  24. URL:=https://github.com/phihag/ipaddress
  25. DEPENDS:=+python-light
  26. endef
  27. define Package/python-ipaddress/description
  28. Python 3.3+'s ipaddress for Python 2.6, 2.7, 3.2.
  29. endef
  30. define Build/Compile
  31. $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR))
  32. endef
  33. $(eval $(call PyPackage,python-ipaddress))
  34. $(eval $(call BuildPackage,python-ipaddress))