Makefile (1121B)
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 8 include $(TOPDIR)/rules.mk 9 10 PKG_NAME:=ipaddress 11 PKG_VERSION:=1.0.17 12 PKG_RELEASE:=1 13 14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz 15 PKG_SOURCE_URL:=https://pypi.python.org/packages/bb/26/3b64955ff73f9e3155079b9ed31812afdfa5333b5c76387454d651ef593a 16 PKG_MD5SUM:=8bbf0326719fafb1f453921ef96729fe 17 18 PKG_BUILD_DEPENDS:=python python-setuptools 19 20 PKG_LICENSE:=Python-2.0 21 PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com> 22 23 include $(INCLUDE_DIR)/package.mk 24 $(call include_mk, python-package.mk) 25 26 define Package/python-ipaddress 27 SECTION:=lang 28 CATEGORY:=Languages 29 SUBMENU:=Python 30 TITLE:=python-ipaddress 31 URL:=https://github.com/phihag/ipaddress 32 DEPENDS:=+python-light 33 endef 34 35 define Package/python-ipaddress/description 36 Python 3.3+'s ipaddress for Python 2.6, 2.7, 3.2. 37 endef 38 39 define Build/Compile 40 $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR)) 41 endef 42 43 $(eval $(call PyPackage,python-ipaddress)) 44 $(eval $(call BuildPackage,python-ipaddress))