summaryrefslogtreecommitdiff
path: root/community/clucene
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-12-20 11:55:48 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-12-20 11:55:48 -0300
commit3bde3a0e359ee1506eb0f48af640b1b825198544 (patch)
tree5ef7e871a412c7fc036d85068debe02f5a717937 /community/clucene
parent02ffd41dca71e92f0105e37751e37c7332a9d447 (diff)
parent6d2dec5c3443d142a0131c43666929490961c16a (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/clucene/PKGBUILD community/cuyo/PKGBUILD community/pinot/PKGBUILD extra/fontforge/PKGBUILD extra/gtkimageview/PKGBUILD extra/mkvtoolnix/PKGBUILD multilib-testing/lib32-glibc/PKGBUILD staging/qt/PKGBUILD testing/glibc/PKGBUILD
Diffstat (limited to 'community/clucene')
-rw-r--r--community/clucene/PKGBUILD33
1 files changed, 21 insertions, 12 deletions
diff --git a/community/clucene/PKGBUILD b/community/clucene/PKGBUILD
index ed52f0128..bc43ff644 100644
--- a/community/clucene/PKGBUILD
+++ b/community/clucene/PKGBUILD
@@ -1,31 +1,40 @@
-# $Id: PKGBUILD 49740 2011-06-20 20:01:57Z andrea $
-# Maintainer:
+# $Id: PKGBUILD 60839 2011-12-18 22:57:14Z arodseth $
+# Maintainer: Alexander Rødseth
# Contributor: Alois Nespor <alois.nespor@gmail.com>
# Contributor: Tobias Powalowski <tpowa@archlinux.org>
-
pkgname=clucene
pkgver=2.3.3.4
-pkgrel=1
-pkgdesc="A C++ port of Lucene: the high-performance, full-featured text search engine"
+pkgrel=2
+pkgdesc="C++ port of the high-performance text search engine Lucene"
arch=('i686' 'x86_64' 'mips64el')
-url="http://clucene.sourceforge.net"
+url="http://clucene.sourceforge.net/"
license=('APACHE' 'LGPL')
depends=('gcc-libs' 'zlib' 'boost-libs')
makedepends=('cmake' 'boost')
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-core-$pkgver.tar.gz")
-md5sums=('48d647fbd8ef8889e5a7f422c1bfda94')
+sha256sums=('ddfdc433dd8ad31b5c5819cc4404a8d2127472a3b720d3e744e8c51d79732eab')
build() {
- cd "${srcdir}"
+ cd "$srcdir"
+
mkdir build
cd build
- cmake ../$pkgname-core-$pkgver \
+ cmake "../$pkgname-core-$pkgver" \
-DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_INSTALL_PREFIX=/usr
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DENABLE_ASCII_MODE=OFF \
+ -DENABLE_PACKAGING=OFF \
+ -DDISABLE_MULTITHREADING=OFF
+ # The three lines above are from
+ # http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/dev-cpp/clucene/clucene-2.3.3.4.ebuild
+ # Thanks, Gentoo
make
}
package() {
- cd "${srcdir}"/build
- make DESTDIR="${pkgdir}" install
+ cd "$srcdir/build"
+
+ make DESTDIR="$pkgdir" install
}
+
+# vim:set ts=2 sw=2 et: