wok view qtgain/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents
children 23c3aed67cd9
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 TARBALL="56842-QtGain.tar.lzma"
9 WEB_SITE="http://qt-apps.org/content/show.php/QtGain?content=56842"
10 WGET_URL="http://qt-apps.org/CONTENT/content-files/$TARBALL"
12 DEPENDS="libQtCore libQtGui libQtNetwork"
13 BUILD_DEPENDS="Qt4-dev qmake"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 # rename source directory
19 mv QtGain $PACKAGE-$VERSION 2> /dev/null
20 cd $src
21 qmake && make
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share/pixmaps
28 cp -a $src/bin $fs/usr
29 cp -a $src/qtgain.png $fs/usr/share/pixmaps
30 cp -a $stuff/* $fs
31 chown -R root.root $fs
32 }