wok view clucene/receipt @ rev 10017

thunar-archive-plugin: fix bdeps
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu May 19 12:28:58 2011 +0200 (2011-05-19)
parents cf088243a4a5
children 8387b6915400
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 }