wok-current view clucene/receipt @ rev 7297
Add aufs. Aufs is now compile by itself like ndiswrapper-driver is. This is so the aufs source tar.gz file is not purge with tazdev everytime we need to purge it. Removed linux-aufs receipt. Updated linux, linux-source, and aufs-utils with the new changes.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Wed Nov 17 00:59:02 2010 +0000 (2010-11-17) |
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 }