summaryrefslogtreecommitdiff
path: root/community/xapian-core/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg047.dnsready.net>2011-04-12 10:53:36 +0000
committerroot <root@rshg047.dnsready.net>2011-04-12 10:53:36 +0000
commit28b5bbf3fee0627993658e096eadab71c2779912 (patch)
treeb799e892101aaaedafdcf1315c4def0ff6bdc1c4 /community/xapian-core/PKGBUILD
parentcabd4a9c1f8304f0d57005b9f31231fc191c8778 (diff)
Tue Apr 12 10:53:36 UTC 2011
Diffstat (limited to 'community/xapian-core/PKGBUILD')
-rw-r--r--community/xapian-core/PKGBUILD19
1 files changed, 8 insertions, 11 deletions
diff --git a/community/xapian-core/PKGBUILD b/community/xapian-core/PKGBUILD
index 5b589388f..223dc8f8c 100644
--- a/community/xapian-core/PKGBUILD
+++ b/community/xapian-core/PKGBUILD
@@ -1,10 +1,11 @@
+# $Id: PKGBUILD 44794 2011-04-11 20:41:06Z ebelanger $
# 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
+pkgver=1.2.5
pkgrel=1
pkgdesc='Open source search engine library.'
arch=('i686' 'x86_64')
@@ -12,21 +13,17 @@ url='http://www.xapian.org/'
license=('GPL')
depends=('sh' 'gcc-libs' 'zlib')
# xapian config requires libxapian.la
-#options=('!libtool')
+options=('libtool')
source=("http://oligarchy.co.uk/xapian/${pkgver}/${pkgname}-${pkgver}.tar.gz")
-md5sums=('9715684900547649e0cbec42e6a157e9')
+md5sums=('775995b7036b01b8b864a95d5646f42d')
build() {
- cd ${pkgname}-${pkgver}
-
- ./configure \
- --prefix=/usr
-
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr
make
}
package() {
- cd ${pkgname}-${pkgver}
-
- make DESTDIR=${pkgdir} install
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
}