wok view clucene/receipt @ rev 22601

updated clucene and clucene-dev (0.9.21b -> 2.3.3.4)
author Hans-G?nter Theisgen
date Wed Jan 08 17:31:15 2020 +0100 (2020-01-08)
parents 86790a278e70
children 9af0e03b8ad0
line source
1 # SliTaz package receipt.
3 PACKAGE="clucene"
4 VERSION="2.3.3.4"
5 CATEGORY="system-tools"
6 TAGS="text indexing"
7 SHORT_DESC="C++ port of Lucene, a high-performance, full-featured text search engine."
8 MAINTAINER="domcox@slitaz.org"
9 LICENSE="LGPL Apache"
10 WEB_SITE="https://sourceforge.net/projects/clucene/"
12 SOURCE="clucene-core"
13 TARBALL="$SOURCE-$VERSION.tar.gz"
14 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
16 BUILD_DEPENDS="cmake"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 mkdir build
22 cd build
23 cmake .. \
24 -DCMAKE_INSTALL_PREFIX=/usr &&
25 make
26 make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }