wok view lucene++/receipt @ rev 21191

consonance: patch for libcdio-paranoia
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Apr 03 18:28:33 2019 +0200 (2019-04-03)
parents
children 5d97883e7e44
line source
1 # SliTaz package receipt.
3 PACKAGE="lucene++"
4 VERSION="3.0.7"
5 CATEGORY="utilities"
6 SHORT_DESC="C++ port of the Java Lucene library"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="Apache"
9 WEB_SITE="https://github.com/luceneplusplus/LucenePlusPlus"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$WEB_SITE/archive/rel_$VERSION.tar.gz"
13 DEPENDS="libboost-date-time libboost-filesystem libboost-iostreams \
14 libboost-regex libboost-system libboost-thread libboost-chrono"
15 BUILD_DEPENDS="cmake libboost-date-time-dev libboost-filesystem-dev \
16 libboost-regex-dev libboost-thread-dev libboost-iostreams-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 mkdir build; cd build
22 cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
23 make &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }