# $Id: PKGBUILD 215520 2014-06-27 19:52:29Z andrea $ # Contributor: Andrea Scarpino # Contributor: Alexander Fehr # Contributor: William Rea # Maintainer: Daniel J Griffiths pkgname=xapian-core epoch=1 pkgver=1.2.18 pkgrel=1 pkgdesc='Open source search engine library.' arch=('i686' 'x86_64') url='http://www.xapian.org/' license=('GPL') depends=('util-linux') # xapian config requires libxapian.la options=('libtool') source=("http://oligarchy.co.uk/xapian/${pkgver}/${pkgname}-${pkgver}.tar.xz") md5sums=('0ccbf68ade12e7b1ead10c57f4447899') build() { # FS#40614 if [ "${CARCH}" = "i686" ]; then SSE2="--disable-sse" fi cd ${pkgname}-${pkgver} ./configure \ --prefix=/usr ${SSE2} make } package() { cd ${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install }