new package: xapian-core

This commit is contained in:
Richard Boulton 2012-05-10 04:41:24 +01:00 committed by Mark Brand
parent 4182367993
commit 9082339ba4
2 changed files with 23 additions and 0 deletions

View File

@ -1938,6 +1938,11 @@ USE_OSGPLUGIN(<plugin2>)
<td id="x264-version">20111018-2245</td>
<td id="x264-website"><a href="http://www.videolan.org/developers/x264.html">x264</a></td>
</tr>
<tr>
<td id="xapian-core-package">xapian-core</td>
<td id="xapian-core-version">1.2.10</td>
<td id="xapian-core-website"><a href="http://xapian.org/">Xapian-Core</a></td>
</tr>
<tr>
<td id="xerces-package">xerces</td>
<td id="xerces-version">3.1.1</td>

18
src/xapian-core.mk Normal file
View File

@ -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