wok annotate clucene/receipt @ rev 22601

updated clucene and clucene-dev (0.9.21b -> 2.3.3.4)
author Hans-G?nter Theisgen
date Wed Jan 08 17:31:15 2020 +0100 (2020-01-08)
parents 86790a278e70
children 9af0e03b8ad0
rev   line source
domcox@6087 1 # SliTaz package receipt.
domcox@6087 2
domcox@6087 3 PACKAGE="clucene"
Hans-G?nter@22601 4 VERSION="2.3.3.4"
domcox@6087 5 CATEGORY="system-tools"
Hans-G?nter@22601 6 TAGS="text indexing"
Hans-G?nter@22601 7 SHORT_DESC="C++ port of Lucene, a high-performance, full-featured text search engine."
pascal@13025 8 MAINTAINER="domcox@slitaz.org"
pascal@15021 9 LICENSE="LGPL Apache"
Hans-G?nter@22601 10 WEB_SITE="https://sourceforge.net/projects/clucene/"
Hans-G?nter@22601 11
domcox@6087 12 SOURCE="clucene-core"
domcox@6087 13 TARBALL="$SOURCE-$VERSION.tar.gz"
slaxemulator@9475 14 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
Hans-G?nter@22601 15
Hans-G?nter@22601 16 BUILD_DEPENDS="cmake"
domcox@6087 17
domcox@6087 18 # Rules to configure and make the package.
domcox@6087 19 compile_rules()
domcox@6087 20 {
Hans-G?nter@22601 21 mkdir build
Hans-G?nter@22601 22 cd build
Hans-G?nter@22601 23 cmake .. \
Hans-G?nter@22601 24 -DCMAKE_INSTALL_PREFIX=/usr &&
domcox@6087 25 make
Hans-G?nter@22601 26 make install
domcox@6087 27 }
domcox@6087 28
domcox@6087 29 # Rules to gen a SliTaz package suitable for Tazpkg.
domcox@6087 30 genpkg_rules()
domcox@6087 31 {
domcox@6087 32 mkdir -p $fs/usr/lib
Hans-G?nter@22601 33 cp -a $install/usr/lib/*.so* $fs/usr/lib
domcox@6087 34 }