mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 14:34:36 +08:00
26 lines
548 B
Bash
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
|
|
}
|