wok view python-llfuse/receipt @ rev 17257

Up: yad (0.27.0).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 21 16:31:29 2014 +0300 (2014-10-21)
parents a7f918cb00d1
children 36df580eeec3
line source
1 # SliTaz package receipt.
3 PACKAGE="python-llfuse"
4 SOURCE="llfuse"
5 VERSION="0.38"
6 CATEGORY="development"
7 SHORT_DESC="Python bindings for the low level FUSE API."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="LGPL2"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://code.google.com/p/$PACKAGE/"
12 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
14 DEPENDS="fuse"
15 BUILD_DEPENDS="python-dev fuse-dev attr-dev python-distribute"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 python setup.py build &&
22 python setup.py test &&
23 python setup.py install --root=$DESTDIR
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cp -a $install/usr $fs
30 }