wok diff sshfs-fuse/receipt @ rev 15693

linux-lxc: modify post_install() for update /etc/fstab
author Stanislas Leduc <shann@slitaz.org>
date Sat Dec 21 08:40:56 2013 +0100 (2013-12-21)
parents 4082600461a0
children c02b96788856
line diff
     1.1 --- a/sshfs-fuse/receipt	Wed Sep 15 11:06:21 2010 +0000
     1.2 +++ b/sshfs-fuse/receipt	Sat Dec 21 08:40:56 2013 +0100
     1.3 @@ -5,12 +5,14 @@
     1.4  CATEGORY="system-tools"
     1.5  SHORT_DESC="SSH Filesystem implemented with FUSE."
     1.6  MAINTAINER="pascal.bellard@slitaz.org"
     1.7 -DEPENDS="fuse openssh glib"
     1.8 -BUILD_DEPENDS="fuse-dev gettext glib glib-dev pkg-config"
     1.9 +LICENSE="GPL2"
    1.10  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.11  WEB_SITE="http://fuse.sourceforge.net/sshfs.html"
    1.12  WGET_URL="$SF_MIRROR/fuse/$TARBALL"
    1.13  
    1.14 +DEPENDS="fuse openssh glib"
    1.15 +BUILD_DEPENDS="fuse-dev gettext glib glib-dev pkg-config"
    1.16 +
    1.17  # Rules to configure and make the package.
    1.18  compile_rules()
    1.19  {
    1.20 @@ -18,12 +20,12 @@
    1.21  	./configure --prefix=/usr \
    1.22  	--mandir=/usr/share/man $CONFIGURE_ARGS &&
    1.23  	make &&
    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/bin $fs/usr
    1.33 +	cp -a $install/usr/bin $fs/usr
    1.34  }