wok view qastools/receipt @ rev 17127

libQtGui: if no exists write ~/.config/Trolltech.conf
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Tue Sep 09 00:43:00 2014 +0200 (2014-09-09)
parents
children e6b7a2aaf2e1
line source
1 # SliTaz package receipt.
3 PACKAGE="qastools"
4 VERSION="0.17.2"
5 CATEGORY="multimedia"
6 SHORT_DESC="QasTools is a collection of desktop applications for the ALSA"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="http://xwmw.org/qastools/index.html"
10 TARBALL="${PACKAGE}_$VERSION.tar.xz"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL"
12 GENERIC_MENUS="no"
14 DEPENDS="alsa-lib libQtCore libQtGui libQtNetwork libQtSvg qasmixer"
15 BUILD_DEPENDS="cmake Qt4-dev qmake alsa-lib-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 mkdir build; cd build
21 cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
22 make &&
23 make DESTDIR=$install install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cp -a $install/* $fs
30 rm -rf $fs/usr/share/man $fs/usr/share/qastools/COPYING
32 # separate qasmixer
33 for file in $(cat $stuff/qasmixer.files); do
34 rm -f $fs$file
35 done
36 }