mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-13 03:42:37 +01:00
63 lines
1.6 KiB
Plaintext
63 lines
1.6 KiB
Plaintext
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=clucene
|
|
pkgver=2.3.3.4
|
|
pkgrel=2
|
|
pkgdesc="A C++ port of Lucene"
|
|
url="http://www.sourceforge.net/projects/clucene"
|
|
arch="all"
|
|
license="LGPLv2+ or ASL 2.0"
|
|
depends=""
|
|
depends_dev="zlib-dev boost-dev libiconv-dev"
|
|
makedepends="cmake $depends_dev"
|
|
install=""
|
|
subpackages="$pkgname-dev $pkgname-contribs"
|
|
source="http://downloads.sourceforge.net/clucene/clucene-core-$pkgver.tar.gz
|
|
clucene-core-2.3.3.4-pkgconfig.patch
|
|
clucene-core-2.3.3.4-install_contribs_lib.patch
|
|
"
|
|
|
|
_builddir="$srcdir"/clucene-core-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
cmake . -DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DBUILD_CONTRIBS_LIB=BOOL:ON \
|
|
-DLIB_DESTINATION:PATH=/usr/lib \
|
|
-DLUCENE_SYS_INCLUDES:PATH=/usr/lib \
|
|
|| return 1
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make install/fast DESTDIR="$pkgdir" || return 1
|
|
rm -r "$pkgdir"/usr/lib/CLuceneConfig.cmake
|
|
}
|
|
|
|
contribs() {
|
|
pkgdesc="Language specific text analyzers for CLucene"
|
|
mkdir -p "$subpkgdir"/usr/lib
|
|
mv "$pkgdir"/usr/lib/libclucene-contribs*.so.* "$subpkgdir"/usr/lib/
|
|
}
|
|
|
|
dev() {
|
|
default_dev
|
|
mv "$pkgdir"/usr/lib/CLucene/*.cmake "$subpkgdir"/usr/lib/CLucene/ \
|
|
|| return 1
|
|
}
|
|
|
|
md5sums="48d647fbd8ef8889e5a7f422c1bfda94 clucene-core-2.3.3.4.tar.gz
|
|
28faf56ff95eb1f5239885ad5060e28f clucene-core-2.3.3.4-pkgconfig.patch
|
|
c3c77ab7764fd37465a6af94f09cbd1e clucene-core-2.3.3.4-install_contribs_lib.patch"
|