treewide: change email
[feed/packages.git] / lang / python / python-cffi / Makefile
1 #
2 # Copyright (C) 2015-2018 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.14.5
12 PKG_RELEASE:=1
13
14 PYPI_NAME:=cffi
15 PKG_HASH:=fd78e5fee591709f32ef6edb9a015b4aa1a5022598e36227500c8f4e02328d9c
16
17 PKG_LICENSE:=MIT
18 PKG_LICENSE_FILES:=LICENSE
19 PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>, Alexandru Ardelean <ardeleanalex@gmail.com>
20
21 include ../pypi.mk
22 include $(INCLUDE_DIR)/package.mk
23 include ../python3-package.mk
24
25 define Package/python3-cffi
26 SECTION:=lang
27 CATEGORY:=Languages
28 SUBMENU:=Python
29 TITLE:=C Foreign Function Interface
30 URL:=https://cffi.readthedocs.org/
31 DEPENDS:= \
32 +libffi \
33 +python3-light \
34 +python3-pycparser
35 endef
36
37 define Package/python3-cffi/description
38 Foreign Function Interface for Python calling C code.
39 endef
40
41 $(eval $(call Py3Package,python3-cffi))
42 $(eval $(call BuildPackage,python3-cffi))
43 $(eval $(call BuildPackage,python3-cffi-src))