core/xapian-core/PKGBUILD

26 lines
548 B
Bash
Raw Normal View History

2014-07-06 05:04:14 +08:00
# maintainer almack@chakraos.org
pkgname=xapian-core
2018-01-22 07:42:57 +08:00
pkgver=1.4.5
pkgrel=1
pkgdesc='Open source search engine library.'
2014-07-06 05:04:14 +08:00
arch=('x86_64')
url='http://www.xapian.org/'
license=('GPL')
2014-07-06 05:04:14 +08:00
depends=('gcc-libs' 'util-linux')
# xapian config requires libxapian.la
options=('libtool')
2014-07-06 05:04:14 +08:00
source=("http://oligarchy.co.uk/xapian/${pkgver}/${pkgname}-${pkgver}.tar.xz")
2018-01-22 07:42:57 +08:00
md5sums=('ac661b7f130e7857e718f2f31d0cd01f')
build() {
2014-07-06 05:04:14 +08:00
cd ${pkgname}-${pkgver}
./configure --prefix=/usr
make
}
package() {
2014-07-06 05:04:14 +08:00
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
2014-09-08 23:34:01 +08:00
}