wok view python-xdg/receipt @ rev 6230

tazbb: inverse sort_cook_list
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Sep 12 09:45:47 2010 +0200 (2010-09-12)
parents 3fb934d8069c
children d72a95b9f79a
line source
1 # SliTaz package receipt.
3 PACKAGE="python-xdg"
4 VERSION="0.18"
5 CATEGORY="development"
6 SHORT_DESC="Python library to access freedesktop.org standards."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS="python"
9 BUILD_DEPENDS="python python-dev"
10 SOURCE="pyxdg"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://www.freedesktop.org/wiki/Software/pyxdg"
13 WGET_URL="http://www.freedesktop.org/~lanius/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 python setup.py build &&
20 python setup.py install --root=$PWD/_pkg
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs
27 cp -a $_pkg/usr $fs
28 }