wok-4.x view clucene/receipt @ rev 12472
Up glibc 2.20
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Fri Mar 03 09:44:37 2023 +0000 (22 months ago) |
parents | cf088243a4a5 |
children |
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@users.sourceforge.net"
8 SOURCE="clucene-core"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://sourceforge.net/projects/clucene/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="text indexing"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --libdir=/usr/lib \
21 --sysconfdir=/etc \
22 --localstatedir=/var \
23 --disable-static \
24 $CONFIGURE_ARGS
25 make
26 make -j1 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 $_pkg/usr/lib/*.so* $fs/usr/lib
34 }