wok view clucene/receipt @ rev 8457

Add setuptools to python-lxml build depends.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Feb 06 19:22:12 2011 +0000 (2011-02-06)
parents 0d48cb16ba98
children cf088243a4a5
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="http://downloads.sourceforge.net/clucene/$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 DESTDIR=$PWD/_pkg 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 strip -s $fs/usr/lib/*
35 }