Makefile (1212B)
1 # 2 # Copyright (C) 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:=attrs 11 PKG_VERSION:=16.2.0 12 PKG_RELEASE:=1 13 14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz 15 PKG_SOURCE_URL:=https://pypi.python.org/packages/6b/71/1682316894ed80b362b9102e7a10997136d8dc1213c36a9f0515c451373a 16 PKG_MD5SUM:=442b73d049af046ced010671b7bfd0e9 17 18 PKG_BUILD_DEPENDS:=python python-setuptools 19 20 PKG_LICENSE:=MIT 21 PKG_LICENSE_FILES:=LICENSE 22 PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com> 23 24 include $(INCLUDE_DIR)/package.mk 25 $(call include_mk, python-package.mk) 26 27 define Package/python-attrs 28 SECTION:=lang 29 CATEGORY:=Languages 30 SUBMENU:=Python 31 TITLE:=python-attrs 32 URL:=https://attrs.readthedocs.org/ 33 DEPENDS:=+python-light 34 endef 35 36 define Package/python-attrs/description 37 attrs is an MIT-licensed Python package with class decorators that ease 38 the chores of implementing the most common attribute-related object 39 protocols. 40 endef 41 42 define Build/Compile 43 $(call Build/Compile/PyMod,,install --prefix="/usr" --root="$(PKG_INSTALL_DIR)") 44 endef 45 46 $(eval $(call PyPackage,python-attrs)) 47 $(eval $(call BuildPackage,python-attrs))