wok view quodlibet/receipt @ rev 16894

qt4-phonon: typo
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Mon Jul 14 14:48:01 2014 +0300 (2014-07-14)
parents 380ffe05937a
children 9689f1b75619
line source
1 # SliTaz package receipt.
3 PACKAGE="quodlibet"
4 VERSION="2.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="An audio player written in pygtk"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="GPL2"
9 SUGGESTED="gst-bad-plugins gst-ffmpeg"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://quodlibet.googlecode.com/"
12 WGET_URL="$WEB_SITE/files/$TARBALL"
13 TAGS="multimedia audio sound music player python"
15 DEPENDS="dbus-python gst-python gst-plugins-base gst-plugins-good \
16 gst-plugins-ugly mutagen pygtk gstreamer"
17 BUILD_DEPENDS="dbus-python-dev gst-python-dev gst-plugins-base-dev \
18 gst-plugins-good-dev gstreamer-dev gst-plugins-ugly-dev pygtk-dev intltool \
19 gettext gtk+-dev python-dev file"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 cd $src
25 ./setup.py build
26 ./setup.py install --prefix=$DESTDIR/usr
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib $fs/usr/share $fs/usr/share/pixmaps
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/python* $fs/usr/lib
36 cp -a stuff/*.png $fs/usr/share/pixmaps/
38 }