core/xapian-core/PKGBUILD
2018-01-22 00:42:57 +01:00

26 lines
548 B
Bash

# maintainer almack@chakraos.org
pkgname=xapian-core
pkgver=1.4.5
pkgrel=1
pkgdesc='Open source search engine library.'
arch=('x86_64')
url='http://www.xapian.org/'
license=('GPL')
depends=('gcc-libs' 'util-linux')
# xapian config requires libxapian.la
options=('libtool')
source=("http://oligarchy.co.uk/xapian/${pkgver}/${pkgname}-${pkgver}.tar.xz")
md5sums=('ac661b7f130e7857e718f2f31d0cd01f')
build() {
cd ${pkgname}-${pkgver}
./configure --prefix=/usr
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
}