wok-6.x annotate pyneighborhood/receipt @ rev 4027
dmraid/grub-dmraid: ensure raid is up
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Sep 05 11:28:55 2009 +0200 (2009-09-05) |
parents | cf3dab72b4e6 |
children | 17ad88488890 |
rev | line source |
---|---|
paul@3859 | 1 # SliTaz package receipt. |
paul@3859 | 2 |
paul@3859 | 3 PACKAGE="pyneighborhood" |
paul@3859 | 4 VERSION="0.5.0" |
paul@3859 | 5 CATEGORY="network" |
paul@3859 | 6 SHORT_DESC="GUI frontend for samba tools (smbclient, smbmount, etc)." |
paul@3859 | 7 MAINTAINER="paul@slitaz.org" |
paul@3859 | 8 DEPENDS="python pygtk samba gettext" |
paul@3859 | 9 BUILD_DEPENDS="python python-dev" |
paul@3859 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
paul@3859 | 11 WEB_SITE="https://launchpad.net/pyneighborhood" |
paul@3859 | 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
paul@3859 | 13 |
paul@3859 | 14 # Rules to configure and make the package. |
paul@3859 | 15 compile_rules() |
paul@3859 | 16 { |
paul@3859 | 17 cd $src |
paul@3859 | 18 python setup.py build && |
paul@3859 | 19 python setup.py install --root=$PWD/_pkg |
paul@3859 | 20 } |
paul@3859 | 21 |
paul@3859 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@3859 | 23 genpkg_rules() |
paul@3859 | 24 { |
paul@3859 | 25 mkdir -p $fs |
paul@3859 | 26 cp -a $_pkg/usr $fs |
paul@3859 | 27 } |
paul@3859 | 28 |