wok-stable rev 6095
clucene add TAGS
author | Dominique Corbex <domcox@slitaz.org> |
---|---|
date | Mon Aug 30 22:01:20 2010 +0200 (2010-08-30) |
parents | cd066bffb300 |
children | 805d7c16ae38 |
files | clucene-dev/receipt clucene/receipt |
line diff
1.1 --- a/clucene-dev/receipt Mon Aug 30 16:34:18 2010 +0200 1.2 +++ b/clucene-dev/receipt Mon Aug 30 22:01:20 2010 +0200 1.3 @@ -16,6 +16,6 @@ 1.4 mkdir -p $fs/usr/lib $fs/usr/include 1.5 cp -a $_pkg/usr/include $fs/usr 1.6 cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 1.7 - cp -a $_pkg/usr/lib/CLucene $fs/usr/lib 1.8 + cp -a $_pkg/usr/lib/CLucene $fs/usr/include 1.9 } 1.10
2.1 --- a/clucene/receipt Mon Aug 30 16:34:18 2010 +0200 2.2 +++ b/clucene/receipt Mon Aug 30 22:01:20 2010 +0200 2.3 @@ -5,19 +5,23 @@ 2.4 CATEGORY="system-tools" 2.5 SHORT_DESC="C++ port of Lucene, a high-performance, full-featured text search engine" 2.6 MAINTAINER="domcox@users.sourceforge.net" 2.7 -DEPENDS="" 2.8 SOURCE="clucene-core" 2.9 TARBALL="$SOURCE-$VERSION.tar.gz" 2.10 WEB_SITE="http://sourceforge.net/projects/clucene/" 2.11 WGET_URL="http://downloads.sourceforge.net/clucene/$TARBALL" 2.12 +TAGS="text indexing" 2.13 2.14 # Rules to configure and make the package. 2.15 compile_rules() 2.16 { 2.17 cd $src 2.18 - ./configure --prefix=/usr --infodir=/usr/share/info \ 2.19 - --disable-static \ 2.20 - --mandir=/usr/share/man $CONFIGURE_ARGS 2.21 + ./configure \ 2.22 + --prefix=/usr \ 2.23 + --libdir=/usr/lib \ 2.24 + --sysconfdir=/etc \ 2.25 + --localstatedir=/var \ 2.26 + --disable-static \ 2.27 + $CONFIGURE_ARGS 2.28 make 2.29 make DESTDIR=$PWD/_pkg install 2.30 }