wok diff ntfsprogs/receipt @ rev 13581

Autofs: copy content to proper paths
author Claudinei Pereira <claudinei@slitaz.org>
date Tue Nov 06 01:33:15 2012 -0200 (2012-11-06)
parents 73641efed1cc
children 380ffe05937a
line diff
     1.1 --- a/ntfsprogs/receipt	Mon Apr 23 16:30:27 2012 +0200
     1.2 +++ b/ntfsprogs/receipt	Tue Nov 06 01:33:15 2012 -0200
     1.3 @@ -5,13 +5,14 @@
     1.4  CATEGORY="system-tools"
     1.5  SHORT_DESC="Utilities for ntfs manipulations with FUSE module."
     1.6  MAINTAINER="pankso@slitaz.org"
     1.7 -DEPENDS="fuse ntfs-3g util-linux-uuid"
     1.8 -BUILD_DEPENDS="fuse"
     1.9  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.10  WEB_SITE="http://www.linux-ntfs.org/"
    1.11  WGET_URL="$SF_MIRROR/linux-ntfs/$TARBALL"
    1.12  TAGS="windows"
    1.13  
    1.14 +DEPENDS="fuse ntfs-3g util-linux-uuid"
    1.15 +BUILD_DEPENDS="fuse"
    1.16 +
    1.17  # Rules to configure and make the package.
    1.18  compile_rules()
    1.19  {
    1.20 @@ -22,16 +23,16 @@
    1.21  		--enable-fuse-module \
    1.22  		$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/lib
    1.32 -	cp -a $_pkg/usr/bin $fs/usr
    1.33 -	cp -a $_pkg/usr/sbin $fs/usr
    1.34 -	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.35 -	cp -a $_pkg/sbin $fs
    1.36 +	cp -a $install/usr/bin $fs/usr
    1.37 +	cp -a $install/usr/sbin $fs/usr
    1.38 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.39 +	cp -a $install/sbin $fs
    1.40  }
    1.41