# HG changeset patch # User Richard Boulton # Date 1336621284 -3600 # Node ID 00a8fe879b7b5f6c3233506d9809f04b747b8fe4 # Parent 30b0ab7e64068180fd5c7d97f979df1b619042c6 new package: xapian-core diff -r 30b0ab7e6406 -r 00a8fe879b7b index.html --- a/index.html Tue Sep 18 22:37:42 2012 +0200 +++ b/index.html Thu May 10 04:41:24 2012 +0100 @@ -1939,6 +1939,11 @@ x264 + xapian-core + 1.2.10 + Xapian-Core + + xerces 3.1.1 Xerces-C++ diff -r 30b0ab7e6406 -r 00a8fe879b7b src/xapian-core.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/xapian-core.mk Thu May 10 04:41:24 2012 +0100 @@ -0,0 +1,18 @@ +# This file is part of MXE. +# See index.html for further information. + +PKG := xapian-core +$(PKG)_IGNORE := +$(PKG)_CHECKSUM := 1be1896ab11a3a66c6c0ade962c700d96678116e +$(PKG)_SUBDIR := xapian-core-$($(PKG)_VERSION) +$(PKG)_FILE := xapian-core-$($(PKG)_VERSION).tar.gz +$(PKG)_URL := http://oligarchy.co.uk/xapian/$($(PKG)_VERSION)/xapian-core-$($(PKG)_VERSION).tar.gz +$(PKG)_DEPS := gcc zlib + +define $(PKG)_BUILD + cd '$(1)' && ./configure \ + --host='$(TARGET)' \ + --prefix='$(PREFIX)/$(TARGET)' \ + --enable-static + $(MAKE) -C '$(1)' -j '$(JOBS)' install +endef