wok view clucene/receipt @ rev 20355

syslinux: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 09 17:09:08 2018 +0200 (2018-06-09)
parents 10e6c72b2c15
children 86790a278e70
line source
1 # SliTaz package receipt.
3 PACKAGE="clucene"
4 VERSION="0.9.21b"
5 CATEGORY="system-tools"
6 SHORT_DESC="C++ port of Lucene, a high-performance, full-featured text search engine"
7 MAINTAINER="domcox@slitaz.org"
8 LICENSE="LGPL Apache"
9 SOURCE="clucene-core"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://sourceforge.net/projects/clucene/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 TAGS="text indexing"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --libdir=/usr/lib \
22 --sysconfdir=/etc \
23 --localstatedir=/var \
24 --disable-static \
25 $CONFIGURE_ARGS
26 make
27 make -j1 install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }