clean up python packaging code.
[openwrt/svn-archive/archive.git] / lang / psycopg / Makefile
1 #
2 # Copyright (C) 2007 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=psycopg
12 PKG_VERSION:=1.1.21
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://www.initd.org/pub/software/psycopg/
17 PKG_MD5SUM:=a31f79f68d6d32898d6f24e11369a106
18 PKG_BUILD_DEPENDS:=python
19
20 include $(INCLUDE_DIR)/package.mk
21 -include $(if $(DUMP),,$(STAGING_DIR)/mk/python-package.mk)
22 ifeq ($(DUMP)$(Build/Compile/PyMod),)
23 $(error Python packaging code not found.)
24 endif
25
26 define Package/python-psycopg
27 SECTION:=lang
28 CATEGORY:=Languages
29 TITLE:=PostgreSQL database adapter for Python
30 URL:=http://www.initd.org/
31 DEPENDS:=python-core +libpq +python-egenix-mx
32 endef
33
34 define Package/python-psycopg/description
35 This package contains is a PostgreSQL database adapter for the Python
36 programming language.
37 endef
38
39 CONFIGURE_ARGS += \
40 --with-python="$(PYTHON)" \
41 --with-postgres-libraries="$(STAGING_DIR)/usr/lib" \
42 --with-postgres-includes="$(STAGING_DIR)/usr/include" \
43 --with-mxdatetime-includes="$(STAGING_DIR)$(PYTHON_PKG_DIR)/mx/DateTime/mxDateTime" \
44
45 define Build/Compile
46 $(MAKE) -C $(PKG_BUILD_DIR) \
47 OPT="$(TARGET_CFLAGS)"
48 endef
49
50 define PyPackage/python-psycopg/install
51 $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
52 $(INSTALL_BIN) $(PKG_BUILD_DIR)/psycopgmodule.so $(1)$(PYTHON_PKG_DIR)/
53 endef
54
55 $(eval $(call PyPackage,python-psycopg))
56 $(eval $(call BuildPackage,python-psycopg))