bbad08117eeef65e09335cfac33c573002e6acf5
[feed/packages.git] / lang / python / python-cffi / Makefile
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:=python-cffi
11 PKG_VERSION:=1.10.0
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=cffi-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=https://pypi.python.org/packages/5b/b9/790f8eafcdab455bcd3bd908161f802c9ce5adbf702a83aa7712fcc345b7
16 PKG_HASH:=b3b02911eb1f6ada203b0763ba924234629b51586f72a21faacc638269f4ced5
17
18 PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)-cffi-$(PKG_VERSION)
19
20 PKG_LICENSE:=MIT
21 PKG_LICENSE_FILES:=LICENSE
22 PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>, Alexandru Ardelean <ardeleanalex@gmail.com>
23
24 HOST_PYTHON_PACKAGE_BUILD_DEPENDS:="cffi==$(PKG_VERSION)"
25 HOST_PYTHON3_PACKAGE_BUILD_DEPENDS:="cffi==$(PKG_VERSION)"
26
27 include $(INCLUDE_DIR)/package.mk
28 $(call include_mk, python-package.mk)
29 $(call include_mk, python3-package.mk)
30
31 PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE)
32
33 define Package/python-cffi/Default
34 SECTION:=lang
35 CATEGORY:=Languages
36 SUBMENU:=Python
37 URL:=http://cffi.readthedocs.org/
38 DEPENDS:=+libffi
39 endef
40
41 define Package/python-cffi
42 $(call Package/python-cffi/Default)
43 TITLE:=python-cffi
44 DEPENDS+=+PACKAGE_python-cffi:python-light +PACKAGE_python-cffi:python-pycparser
45 VARIANT:=python
46 endef
47
48 define Package/python3-cffi
49 $(call Package/python-cffi/Default)
50 TITLE:=python3-cffi
51 DEPENDS+=+PACKAGE_python3-cffi:python3-light +PACKAGE_python3-cffi:python3-pycparser
52 VARIANT:=python3
53 endef
54
55 define Package/python-cffi/description
56 Foreign Function Interface for Python calling C code.
57 endef
58
59 define Package/python3-cffi/description
60 $(call Package/python-cffi/description)
61 .
62 (Variant for Python3)
63 endef
64
65 $(eval $(call PyPackage,python-cffi))
66 $(eval $(call BuildPackage,python-cffi))
67
68 $(eval $(call Py3Package,python3-cffi))
69 $(eval $(call BuildPackage,python3-cffi))