mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
26 lines
721 B
Bash
26 lines
721 B
Bash
|
# $Id: PKGBUILD 1877 2009-09-05 20:35:28Z andrea $
|
||
|
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
|
||
|
# Contributor: Alexander Fehr <pizzapunk gmail com>
|
||
|
# Contributor: William Rea <sillywilly@gmail.com>
|
||
|
|
||
|
pkgname=xapian-core
|
||
|
pkgver=1.0.15
|
||
|
pkgrel=1
|
||
|
pkgdesc="Open source search engine library"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.xapian.org/"
|
||
|
license=('GPL')
|
||
|
depends=('sh' 'gcc-libs' 'zlib')
|
||
|
source=(http://oligarchy.co.uk/xapian/$pkgver/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('d851e661966fa0446cb46d7352c84a98')
|
||
|
# xapian config requires libxapian.la
|
||
|
#options=('!libtool')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/$pkgname-$pkgver
|
||
|
|
||
|
./configure --prefix=/usr || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR=${pkgdir} install || return 1
|
||
|
}
|