wok view qtgain/receipt @ rev 16348

Up: slitaz-base-files (5.5)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Apr 13 01:42:13 2014 +0200 (2014-04-13)
parents 883aaa8d90bc
children b367a52d4872
line source
1 # SliTaz package receipt.
3 PACKAGE="qtgain"
4 VERSION="0.9.5"
5 CATEGORY="multimedia"
6 SHORT_DESC="Simple frontend for MP3Gain, VorbisGain, AACGain and Metaflac."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="56842-QtGain.tar.lzma"
10 WEB_SITE="http://qt-apps.org/content/show.php/QtGain?content=56842"
11 WGET_URL="http://qt-apps.org/CONTENT/content-files/$TARBALL"
13 DEPENDS="libQtCore libQtGui libQtNetwork"
14 BUILD_DEPENDS="Qt4-dev qmake"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 # rename source directory
20 mv QtGain $PACKAGE-$VERSION 2> /dev/null
21 cd $src
22 qmake && make
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share/pixmaps
29 cp -a $src/bin $fs/usr
30 cp -a $src/qtgain.png $fs/usr/share/pixmaps
31 cp -a $stuff/* $fs
32 chown -R root.root $fs
33 }