diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/xapian-core |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/xapian-core')
-rw-r--r-- | community/xapian-core/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/community/xapian-core/PKGBUILD b/community/xapian-core/PKGBUILD new file mode 100644 index 000000000..5b589388f --- /dev/null +++ b/community/xapian-core/PKGBUILD @@ -0,0 +1,32 @@ +# Contributor: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Alexander Fehr <pizzapunk gmail com> +# Contributor: William Rea <sillywilly@gmail.com> +# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> + +pkgname=xapian-core +pkgver=1.2.4 +pkgrel=1 +pkgdesc='Open source search engine library.' +arch=('i686' 'x86_64') +url='http://www.xapian.org/' +license=('GPL') +depends=('sh' 'gcc-libs' 'zlib') +# xapian config requires libxapian.la +#options=('!libtool') +source=("http://oligarchy.co.uk/xapian/${pkgver}/${pkgname}-${pkgver}.tar.gz") +md5sums=('9715684900547649e0cbec42e6a157e9') + +build() { + cd ${pkgname}-${pkgver} + + ./configure \ + --prefix=/usr + + make +} + +package() { + cd ${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install +} |