xkbdata: Add missing dependency to xkbcomp
[openwrt/svn-archive/archive.git] / lang / pyopenssl / Makefile
1 #
2 # Copyright (C) 2008 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:=0.10
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=pyOpenSSL-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://pypi.python.org/packages/source/p/pyOpenSSL/
16 PKG_MD5SUM:=34db8056ec53ce80c7f5fc58bee9f093
17
18 PKG_BUILD_DIR:=$(BUILD_DIR)/pyOpenSSL-$(PKG_VERSION)
19 PKG_BUILD_DEPENDS:=python
20
21 include $(INCLUDE_DIR)/package.mk
22 $(call include_mk, python-package.mk)
23
24 define Package/pyopenssl
25 SUBMENU:=Python
26 SECTION:=lang
27 CATEGORY:=Languages
28 TITLE:=pyopenssl
29 URL:=http://pyopenssl.sourceforge.net/
30 DEPENDS:=+python
31 endef
32
33 define Package/pyopenssl/description
34 Python interface to the OpenSSL library.
35 endef
36
37 define Build/Compile
38 $(call Build/Compile/PyMod,,install --prefix="$(PKG_INSTALL_DIR)/usr")
39 endef
40
41 define Package/pyopenssl/install
42 $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
43 $(CP) \
44 $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
45 $(1)$(PYTHON_PKG_DIR)
46 endef
47
48 $(eval $(call BuildPackage,pyopenssl))