wok view clucene/receipt @ rev 23117

updated libusb and libusb-dev (1.0.22 -> 1.0.23)
author Hans-G?nter Theisgen
date Thu Mar 12 17:06:21 2020 +0100 (2020-03-12)
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 }