# # Copyright (C) 2008-2010 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:=xapian-core PKG_VERSION:=1.0.7 PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://oligarchy.co.uk/xapian/$(PKG_VERSION) PKG_MD5SUM:=b4acff50028120852d4a8d943065f6d2 PKG_FIXUP:=libtool PKG_INSTALL:=1 include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/nls.mk define Package/libxapian SECTION:=libs CATEGORY:=Libraries TITLE:=xapian URL:=http://xapian.org DEPENDS:=+libstdcpp +zlib endef define Build/InstallDev $(INSTALL_DIR) $(1)/usr/share/aclocal $(INSTALL_DATA) \ $(PKG_INSTALL_DIR)/usr/share/aclocal/* \ $(1)/usr/share/aclocal $(INSTALL_DIR) $(1)/usr/include $(INSTALL_DATA) \ $(PKG_INSTALL_DIR)/usr/include/xapian.h \ $(1)/usr/include $(INSTALL_DIR) $(1)/usr/include/xapian $(INSTALL_DATA) \ $(PKG_INSTALL_DIR)/usr/include/xapian/* \ $(1)/usr/include/xapian $(INSTALL_DIR) $(1)/usr/lib/ $(CP) \ $(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} \ $(1)/usr/lib/ $(INSTALL_DIR) $(2)/bin $(INSTALL_BIN) \ $(PKG_INSTALL_DIR)/usr/bin/xapian-config \ $(2)/bin $(SED) 's,prefix=",prefix="$(STAGING_DIR),g' $(2)/bin/xapian-config #FIXME: Libtool should handle this if [ -f $(TOOLCHAIN_DIR)/usr/lib/libstdc++.la ]; then \ $(SED) \ "s,$(STAGING_DIR)/usr/lib/libstdc++,$(TOOLCHAIN_DIR)/usr/lib/libstdc++,g" \ $(1)/usr/lib/libxapian.la ; \ else \ $(SED) \ "s,$(STAGING_DIR)/usr/lib/libstdc++,$(TOOLCHAIN_DIR)/lib/libstdc++,g" \ $(1)/usr/lib/libxapian.la ; \ fi endef define Package/libxapian/install $(INSTALL_DIR) $(1)/usr/lib/ $(CP) \ $(PKG_INSTALL_DIR)/usr/lib/*.so* \ $(1)/usr/lib $(INSTALL_DIR) $(1)/usr/bin/ $(INSTALL_BIN) \ $(PKG_INSTALL_DIR)/usr/bin/* \ $(1)/usr/bin endef $(eval $(call BuildPackage,libxapian))