wok view libdbusmenu-qt/receipt @ rev 12148

squidclamav: Fix config. Remove unwanted file
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Mar 15 00:08:22 2012 +0100 (2012-03-15)
parents
children ca30f29e8297
line source
1 # SliTaz package receipt.
3 PACKAGE="libdbusmenu-qt"
4 VERSION="0.8.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Library to import and export QMenu instances using the DBusMenu."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="https://launchpad.net/libdbusmenu-qt"
10 WGET_URL="http://launchpad.net/libdbusmenu-qt/trunk/$VERSION/+download/$TARBALL"
12 DEPENDS="dbus"
13 BUILD_DEPENDS="cmake qmake Qt4-dev dbus-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 mkdir -p $src/build
19 cd $src/build
20 cmake \
21 -DCMAKE_BUILD_TYPE=Release \
22 -DCMAKE_INSTALL_PREFIX=/usr .. &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 }