wok view quodlibet/receipt @ rev 21490

trickle: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 01 18:05:32 2019 +0200 (2019-05-01)
parents 7390f8de9846
children b569b85b0fb9
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-plugins-bad gst-ffmpeg"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="https://github.com/quodlibet/quodlibet"
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 ./setup.py build
25 ./setup.py install --prefix=$DESTDIR/usr
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib $fs/usr/share $fs/usr/share/pixmaps
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/python* $fs/usr/lib
34 cp -a stuff/*.png $fs/usr/share/pixmaps/
35 }