wok view strigi/receipt @ rev 15004

Add some LGPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 22:18:41 2013 +0000 (2013-08-10)
parents 68ec33732967
children 0e4d1805cdc7
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 dbus-dev libQtCore libQtDBus qmake bzip2-dev"
10 SUGGESTED="strigi-client"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.vandenoever.info/software/strigi/"
13 WGET_URL="http://www.vandenoever.info/software/strigi/$TARBALL"
15 DEPENDS="libxml2 expat sqlite dbus qt4"
16 BUILD_DEPENDS="$DEPENDS libxml2-dev cmake Qt4-dev bzlib expat-dev sqlite-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 }