wok annotate clucene/receipt @ rev 21920

Add pcem
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 05 16:15:48 2019 +0200 (2019-10-05)
parents 051931e905b0
children 1dce3fb32d2b
rev   line source
domcox@6087 1 # SliTaz package receipt.
domcox@6087 2
domcox@6087 3 PACKAGE="clucene"
domcox@6087 4 VERSION="0.9.21b"
domcox@6087 5 CATEGORY="system-tools"
domcox@6087 6 SHORT_DESC="C++ port of Lucene, a high-performance, full-featured text search engine"
pascal@13025 7 MAINTAINER="domcox@slitaz.org"
pascal@15021 8 LICENSE="LGPL Apache"
domcox@6087 9 SOURCE="clucene-core"
domcox@6087 10 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@20421 11 WEB_SITE="https://sourceforge.net/projects/clucene/"
slaxemulator@9475 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
domcox@6095 13 TAGS="text indexing"
domcox@6087 14
domcox@6087 15 # Rules to configure and make the package.
domcox@6087 16 compile_rules()
domcox@6087 17 {
domcox@6087 18 cd $src
domcox@6095 19 ./configure \
domcox@6095 20 --prefix=/usr \
domcox@6095 21 --libdir=/usr/lib \
domcox@6095 22 --sysconfdir=/etc \
domcox@6095 23 --localstatedir=/var \
domcox@6095 24 --disable-static \
domcox@6095 25 $CONFIGURE_ARGS
domcox@6087 26 make
gokhlayeh@8612 27 make -j1 install
domcox@6087 28 }
domcox@6087 29
domcox@6087 30 # Rules to gen a SliTaz package suitable for Tazpkg.
domcox@6087 31 genpkg_rules()
domcox@6087 32 {
domcox@6087 33 mkdir -p $fs/usr/lib
pascal@15603 34 cp -a $install/usr/lib/*.so* $fs/usr/lib
domcox@6087 35 }
domcox@6087 36