wok view clucene/receipt @ rev 6087

Add: clucene clucene-dev (0.9.21b)
author Dominique Corbex <domcox@slitaz.org>
date Sun Aug 29 21:24:52 2010 +0200 (2010-08-29)
parents
children fdce9fde98b2
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 DEPENDS=""
9 SOURCE="clucene-core"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://sourceforge.net/projects/clucene/"
12 WGET_URL="http://downloads.sourceforge.net/clucene/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --disable-static \
20 --mandir=/usr/share/man $CONFIGURE_ARGS
21 make
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
30 strip -s $fs/usr/lib/*
31 }