wok annotate quodlibet/receipt @ rev 14247

syslinux/iso2exe: use posixovl -F
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 24 23:14:15 2013 +0100 (2013-03-24)
parents c4ca195c01dd
children 380ffe05937a
rev   line source
jozee@2678 1 # SliTaz package receipt.
jozee@2678 2
jozee@2678 3 PACKAGE="quodlibet"
jozee@2678 4 VERSION="2.0"
jozee@2678 5 CATEGORY="multimedia"
jozee@2678 6 SHORT_DESC="An audio player written in pygtk"
jozee@2678 7 MAINTAINER="jozee@slitaz.org"
jozee@2678 8 SUGGESTED="gst-bad-plugins gst-ffmpeg"
jozee@2678 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@2678 10 WEB_SITE="http://quodlibet.googlecode.com/"
jozee@2678 11 WGET_URL="$WEB_SITE/files/$TARBALL"
jozee@4971 12 TAGS="multimedia audio sound music player python"
jozee@2678 13
pascal@11879 14 DEPENDS="dbus-python gst-python gst-plugins-base gst-plugins-good \
pascal@11879 15 gst-plugins-ugly mutagen pygtk gstreamer"
pascal@11879 16 BUILD_DEPENDS="dbus-python-dev gst-python-dev gst-plugins-base-dev \
pascal@11879 17 gst-plugins-good-dev gstreamer-dev gst-plugins-ugly-dev pygtk-dev intltool \
pascal@11879 18 gettext gtk+-dev python-dev"
pascal@11879 19
jozee@2678 20 # Rules to configure and make the package.
jozee@2678 21 compile_rules()
jozee@2678 22 {
jozee@2678 23 cd $src
jozee@2678 24 ./setup.py build
jozee@2678 25 ./setup.py install --prefix=$PWD/_pkg/usr
jozee@2678 26
jozee@2678 27 }
jozee@2678 28
jozee@2678 29 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@2678 30 genpkg_rules()
jozee@2678 31 {
jozee@2678 32 mkdir -p $fs/usr/lib $fs/usr/share $fs/usr/share/pixmaps
jozee@2678 33 cp -a $_pkg/usr/bin $fs/usr
jozee@2678 34 cp -a $_pkg/usr/lib/python* $fs/usr/lib
jozee@2678 35 cp -a stuff/*.png $fs/usr/share/pixmaps/
jozee@2678 36
jozee@2678 37 }