42fb1aed99d5ca0f0435cfc3fd697ddd2781387f
[openwrt/svn-archive/archive.git] / 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 # $Id:
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=xapian-bindings
12 PKG_VERSION:=1.0.7
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://oligarchy.co.uk/xapian/$(PKG_VERSION)
17 PKG_FIXUP:=libtool
18
19 include $(INCLUDE_DIR)/package.mk
20
21 PKG_INSTALL=1
22
23 define Package/python-xapian
24 SECTION:=lang
25 CATEGORY:=Languages
26 SUBMENU:=Python
27 TITLE:=xapian python bindings
28 URL:=http://oligarchy.co.uk/xapian/
29 DEPENDS:=python +libxapian
30 endef
31
32 define Build/Configure
33 $(call Build/Configure/Default, --with-python)
34 endef
35
36 define Package/python-xapian/install
37 $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
38 $(CP) $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* $(1)$(PYTHON_PKG_DIR)
39 endef
40
41 $(eval $(call BuildPackage,python-xapian))
42
43