wok diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/clucene/receipt	Sun Aug 29 21:24:52 2010 +0200
     1.3 @@ -0,0 +1,32 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="clucene"
     1.7 +VERSION="0.9.21b"
     1.8 +CATEGORY="system-tools"
     1.9 +SHORT_DESC="C++ port of Lucene, a high-performance, full-featured text search engine"
    1.10 +MAINTAINER="domcox@users.sourceforge.net"
    1.11 +DEPENDS=""
    1.12 +SOURCE="clucene-core"
    1.13 +TARBALL="$SOURCE-$VERSION.tar.gz"
    1.14 +WEB_SITE="http://sourceforge.net/projects/clucene/"
    1.15 +WGET_URL="http://downloads.sourceforge.net/clucene/$TARBALL"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +compile_rules()
    1.19 +{
    1.20 +	cd $src
    1.21 +	./configure --prefix=/usr --infodir=/usr/share/info \
    1.22 +	--disable-static \
    1.23 +	--mandir=/usr/share/man $CONFIGURE_ARGS
    1.24 +	make
    1.25 +	make DESTDIR=$PWD/_pkg install
    1.26 +}
    1.27 +
    1.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.29 +genpkg_rules()
    1.30 +{
    1.31 +	mkdir -p $fs/usr/lib
    1.32 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.33 +	strip -s $fs/usr/lib/*
    1.34 +}
    1.35 +