wok-6.x diff pyneighborhood/receipt @ rev 17929
syslinux/taziso: install grub
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Apr 11 18:26:44 2015 +0200 (2015-04-11) |
parents | ce4297548db6 |
children | 16df76e1fc6a |
line diff
1.1 --- a/pyneighborhood/receipt Sat Apr 09 21:20:10 2011 +0100 1.2 +++ b/pyneighborhood/receipt Sat Apr 11 18:26:44 2015 +0200 1.3 @@ -5,12 +5,14 @@ 1.4 CATEGORY="network" 1.5 SHORT_DESC="GUI frontend for samba tools (smbclient, smbmount, etc)." 1.6 MAINTAINER="paul@slitaz.org" 1.7 -DEPENDS="python pygtk samba" 1.8 -BUILD_DEPENDS="python python-dev gettext wget" 1.9 +LICENSE="GPL3" 1.10 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.11 WEB_SITE="https://launchpad.net/pyneighborhood" 1.12 WGET_URL="$WEB_SITE/${VERSION%.*}/$VERSION/+download/$TARBALL" 1.13 1.14 +DEPENDS="python pygtk samba" 1.15 +BUILD_DEPENDS="python python-dev gettext wget" 1.16 + 1.17 # Rules to configure and make the package. 1.18 compile_rules() 1.19 { 1.20 @@ -20,14 +22,14 @@ 1.21 # hack .desktop file 1.22 sed -i 's/Application;Network;System;Utility/Application;System;/' pyNeighborhood.desktop 1.23 1.24 - make DESTDIR=$PWD/_pkg install 1.25 + make DESTDIR=$DESTDIR install 1.26 } 1.27 1.28 # Rules to gen a SliTaz package suitable for Tazpkg. 1.29 genpkg_rules() 1.30 { 1.31 mkdir -p $fs/usr 1.32 - cp -a $_pkg/usr $fs 1.33 - cp -a $_pkg/share $fs/usr 1.34 + cp -a $install/usr $fs 1.35 + cp -a $install/share $fs/usr 1.36 } 1.37