# This file is part of MXE. # See index.html for further information. PKG := xapian-core $(PKG)_IGNORE := $(PKG)_VERSION := 1.2.16 $(PKG)_CHECKSUM := c280ee15b14416043874f7754e0b054ac0624e7b $(PKG)_SUBDIR := xapian-core-$($(PKG)_VERSION) $(PKG)_FILE := xapian-core-$($(PKG)_VERSION).tar.xz $(PKG)_URL := http://oligarchy.co.uk/xapian/$($(PKG)_VERSION)/$($(PKG)_FILE) $(PKG)_DEPS := gcc zlib define $(PKG)_UPDATE $(WGET) -q -O- http://xapian.org/download | \ $(SED) -n 's,.*.*,\1,p' | \ head -1 endef define $(PKG)_BUILD cd '$(1)' && ./configure \ --host='$(TARGET)' \ --build="`config.guess`" \ --prefix='$(PREFIX)/$(TARGET)' \ --enable-static $(MAKE) -C '$(1)' -j '$(JOBS)' install endef