lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

Makefile (1182B)


      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:=pyOpenSSL
     11 PKG_VERSION:=16.1.0
     12 PKG_RELEASE:=1
     13 
     14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
     15 PKG_SOURCE_URL:=https://pypi.python.org/packages/15/1e/79c75db50e57350a7cefb70b110255757e9abd380a50ebdc0cfd853b7450
     16 PKG_MD5SUM:=d8100b0c333f0eeadaf05914da8792a6
     17 
     18 PKG_BUILD_DEPENDS:=python python-setuptools
     19 
     20 PKG_LICENSE:=Apache-2.0
     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-pyopenssl
     28 	SECTION:=lang
     29 	CATEGORY:=Languages
     30 	SUBMENU:=Python
     31 	TITLE:=python-pyopenssl
     32 	URL:=https://github.com/pyca/pyopenssl
     33 	DEPENDS:=+python-light +python-cryptography +python-six
     34 endef
     35 
     36 define Package/python-pyopenssl/description
     37 Python wrapper module around the OpenSSL library
     38 endef
     39 
     40 define Build/Compile
     41 	$(call Build/Compile/PyMod,,install --prefix="/usr" --root="$(PKG_INSTALL_DIR)")
     42 endef
     43 
     44 $(eval $(call PyPackage,python-pyopenssl))
     45 $(eval $(call BuildPackage,python-pyopenssl))