wok-6.x annotate python-mpd/receipt @ rev 7593
Busybox config change: unset CONFIG_AR (it conflict with binutils ar) & unset CONFIG_XZ (only unxz is actually usefull - it appears that lzma legacy is our better compression tool)
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Fri Dec 10 19:35:10 2010 +0100 (2010-12-10) |
parents | |
children | 14f158bcbdb4 |
rev | line source |
---|---|
jozee@2676 | 1 # SliTaz package receipt. |
jozee@2676 | 2 |
jozee@2676 | 3 PACKAGE="python-mpd" |
jozee@2676 | 4 VERSION="0.2.1" |
jozee@2676 | 5 CATEGORY="multimedia" |
jozee@2676 | 6 SHORT_DESC="Python MPD client library" |
jozee@2676 | 7 MAINTAINER="jozee@slitaz.org" |
jozee@2676 | 8 DEPENDS="python" |
jozee@2676 | 9 BUILD_DEPENDS="python-dev" |
jozee@2676 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
jozee@2676 | 11 WEB_SITE="http://mpd.wikia.com/wiki/ClientLib:python-mpd" |
jozee@2676 | 12 WGET_URL="http://pypi.python.org/packages/source/p/python-mpd/$TARBALL" |
jozee@2676 | 13 |
jozee@2676 | 14 # Rules to configure and make the package. |
jozee@2676 | 15 compile_rules() |
jozee@2676 | 16 { |
jozee@2676 | 17 cd $src |
jozee@2676 | 18 python setup.py install --prefix=/usr --root="$PWD/_pkg" |
jozee@2676 | 19 |
jozee@2676 | 20 } |
jozee@2676 | 21 |
jozee@2676 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
jozee@2676 | 23 genpkg_rules() |
jozee@2676 | 24 { |
jozee@2676 | 25 mkdir -p $fs/usr/lib |
jozee@2676 | 26 cp -a $_pkg/usr/lib $fs/usr |
jozee@2676 | 27 } |