[packages] normalize PKG_FIXUP - the "libtool" fixup is merely an alias for "autoreco...
[packages.git] / libs / libxapian / Makefile
1 #
2 # Copyright (C) 2008-2010 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:=xapian-core
11 PKG_VERSION:=1.2.8
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://oligarchy.co.uk/xapian/$(PKG_VERSION)
16 PKG_MD5SUM:=6c9f9e7ac43aa4e086283201329e98ee
17
18 PKG_FIXUP:=autoreconf
19 PKG_INSTALL:=1
20
21 include $(INCLUDE_DIR)/package.mk
22 include $(INCLUDE_DIR)/nls.mk
23
24 define Package/libxapian
25   SECTION:=libs
26   CATEGORY:=Libraries
27   TITLE:=xapian
28   URL:=http://xapian.org
29   DEPENDS:=+libstdcpp +zlib
30 endef
31
32 MAKE_FLAGS += \
33         SUBDIRS=.
34
35 define Build/InstallDev
36         $(INSTALL_DIR) $(1)/usr/share/aclocal
37         $(INSTALL_DATA) \
38                 $(PKG_INSTALL_DIR)/usr/share/aclocal/* \
39                 $(1)/usr/share/aclocal
40
41         $(INSTALL_DIR) $(1)/usr/include
42         $(INSTALL_DATA) \
43                 $(PKG_INSTALL_DIR)/usr/include/xapian.h \
44                 $(1)/usr/include
45         $(INSTALL_DIR) $(1)/usr/include/xapian
46         $(INSTALL_DATA) \
47                 $(PKG_INSTALL_DIR)/usr/include/xapian/* \
48                 $(1)/usr/include/xapian
49
50         $(INSTALL_DIR) $(1)/usr/lib/
51         $(CP) \
52                 $(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} \
53                 $(1)/usr/lib/
54         $(INSTALL_DIR) $(2)/bin
55         $(INSTALL_BIN) \
56                 $(PKG_INSTALL_DIR)/usr/bin/xapian-config \
57                 $(2)/bin
58         $(SED) 's,prefix=",prefix="$(STAGING_DIR),g' $(2)/bin/xapian-config
59
60         #FIXME: Libtool should handle this
61         if [ -f $(TOOLCHAIN_DIR)/usr/lib/libstdc++.la ]; then \
62           $(SED) \
63                 "s,$(STAGING_DIR)/usr/lib/libstdc++,$(TOOLCHAIN_DIR)/usr/lib/libstdc++,g" \
64                 $(1)/usr/lib/libxapian.la ; \
65         else \
66           $(SED) \
67                 "s,$(STAGING_DIR)/usr/lib/libstdc++,$(TOOLCHAIN_DIR)/lib/libstdc++,g" \
68                 $(1)/usr/lib/libxapian.la ; \
69         fi
70 endef
71
72 define Package/libxapian/install
73         $(INSTALL_DIR) $(1)/usr/lib/
74         $(CP) \
75                 $(PKG_INSTALL_DIR)/usr/lib/*.so* \
76                 $(1)/usr/lib
77         $(INSTALL_DIR) $(1)/usr/bin/
78         $(INSTALL_BIN) \
79                 $(PKG_INSTALL_DIR)/usr/bin/* \
80                 $(1)/usr/bin
81 endef
82
83 $(eval $(call BuildPackage,libxapian))