1
0
This repository has been archived on 2025-06-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
openwrt_archive/lang/pyopenssl/Makefile
Jo-Philipp Wich b61ae91ed4 [packages] pyopenssl: add dependency
SVN-Revision: 32271
2012-06-12 21:24:33 +00:00

49 lines
1.1 KiB
Makefile

#
# Copyright (C) 2008 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=pyopenssl
PKG_VERSION:=0.10
PKG_RELEASE:=1
PKG_SOURCE:=pyOpenSSL-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://pypi.python.org/packages/source/p/pyOpenSSL/
PKG_MD5SUM:=34db8056ec53ce80c7f5fc58bee9f093
PKG_BUILD_DIR:=$(BUILD_DIR)/pyOpenSSL-$(PKG_VERSION)
PKG_BUILD_DEPENDS:=python
include $(INCLUDE_DIR)/package.mk
$(call include_mk, python-package.mk)
define Package/pyopenssl
SUBMENU:=Python
SECTION:=lang
CATEGORY:=Languages
TITLE:=pyopenssl
URL:=http://pyopenssl.sourceforge.net/
DEPENDS:=+python +libopenssl
endef
define Package/pyopenssl/description
Python interface to the OpenSSL library.
endef
define Build/Compile
$(call Build/Compile/PyMod,,install --prefix="$(PKG_INSTALL_DIR)/usr")
endef
define Package/pyopenssl/install
$(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
$(CP) \
$(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
$(1)$(PYTHON_PKG_DIR)
endef
$(eval $(call BuildPackage,pyopenssl))