wok view strigi/receipt @ rev 20936

updated fpm2 again (0.76.1 -> 0.79)
author Hans-G?nter Theisgen
date Sat Mar 02 16:28:51 2019 +0100 (2019-03-02)
parents be7b188ef115
children 25e6df381f36
line source
1 # SliTaz package receipt.
3 PACKAGE="strigi"
4 VERSION="0.7.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="Strigi is a fast and light desktop search engine."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2"
9 SUGGESTED="strigi-client"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="https://www.vandenoever.info/software/strigi/"
12 WGET_URL="https://www.vandenoever.info/software/strigi/$TARBALL"
14 DEPENDS="libxml2 expat sqlite dbus libQtDBus libQtXml libQtCore"
15 BUILD_DEPENDS="$DEPENDS libxml2-dev cmake Qt4-dev bzlib expat-dev sqlite-dev \
16 dbus-dev libQtCore libQtDBus qmake bzip2-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 mkdir -p build && cd build
23 cmake \
24 -DCMAKE_INSTALL_PREFIX=/usr \
25 .. &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib/$PACKAGE
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 cp -a $install/usr/lib/$PACKAGE/*.so* $fs/usr/lib/$PACKAGE
35 cp -a $install/usr/share $fs/usr
36 cp -a $install/usr/bin $fs/usr
37 # QT GUI split into strigi-client
38 rm -f $fs/usr/bin/strigiclient
39 }