wok diff ntfs-3g/receipt @ rev 25004

updated ntfs-3g and ntfs-3g-dev (2017.3.23 -> 2021.8.22)
author Hans-G?nter Theisgen
date Mon May 16 16:20:40 2022 +0100 (2022-05-16)
parents 72f2704d3ae0
children 7364ffdaaa60
line diff
     1.1 --- a/ntfs-3g/receipt	Fri Mar 18 18:06:12 2022 +0000
     1.2 +++ b/ntfs-3g/receipt	Mon May 16 16:20:40 2022 +0100
     1.3 @@ -1,20 +1,22 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="ntfs-3g"
     1.7 -VERSION="2017.3.23"
     1.8 +VERSION="2021.8.22"
     1.9  CATEGORY="system-tools"
    1.10 -SHORT_DESC="Read/write NTFS driver for FUSE"
    1.11 +TAGS="windows"
    1.12 +SHORT_DESC="Read and write NTFS driver for FUSE."
    1.13  MAINTAINER="pankso@slitaz.org"
    1.14  LICENSE="GPL2"
    1.15 +WEB_SITE="https://www.tuxera.com/community/open-source-ntfs-3g/"
    1.16 +
    1.17  SOURCE="ntfs-3g_ntfsprogs"
    1.18  TARBALL="$SOURCE-$VERSION.tgz"
    1.19 -WEB_SITE="https://www.tuxera.com/community/open-source-ntfs-3g/"
    1.20  WGET_URL="https://tuxera.com/opensource/$TARBALL"
    1.21 +
    1.22 +DEPENDS="attr fuse"
    1.23 +BUILD_DEPENDS="attr-dev fuse-dev libtool util-linux-uuid-dev"
    1.24 +
    1.25  CONFIG_FILES="/etc/filesystems"
    1.26 -TAGS="windows"
    1.27 -
    1.28 -DEPENDS="fuse2 attr"
    1.29 -BUILD_DEPENDS="fuse2-dev attr-dev util-linux-uuid-dev libtool"
    1.30  
    1.31  current_version()
    1.32  {
    1.33 @@ -26,23 +28,30 @@
    1.34  compile_rules()
    1.35  {
    1.36  	mkdir -p $DESTDIR/lib
    1.37 -	./configure --prefix=/usr \
    1.38 -	--disable-static \
    1.39 -	--with-fuse=internal \
    1.40 -	--mandir=/usr/share/man $CONFIGURE_ARGS &&
    1.41 +	./configure			\
    1.42 +		--prefix=/usr		\
    1.43 +		--disable-static	\
    1.44 +		--with-fuse=internal	\
    1.45 +		--mandir=/usr/share/man	\
    1.46 +		$CONFIGURE_ARGS &&
    1.47  	make &&
    1.48 -	make DESTDIR=$DESTDIR install
    1.49 +	make install DESTDIR=$DESTDIR
    1.50  }
    1.51  
    1.52  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.53  genpkg_rules()
    1.54  {
    1.55  	mkdir -p $fs/etc
    1.56 -	cp -a $install/. $fs/.
    1.57 -	rm -rf $fs/usr/bin/ntfs[a-z]* $fs/sbin/mkfs.ntfs $fs/usr/s*
    1.58 -	rm -rf $fs/usr/share $fs/usr/lib/pkgconfig $fs/usr/lib/*.a $fs/usr/include
    1.59 -	touch $fs/etc/filesystems
    1.60 -	#this link allow udisks2 to use ntfs-3g
    1.61 +	cp -a $install/.	$fs/.
    1.62 +	rm -rf			$fs/usr/bin/ntfs[a-z]*
    1.63 +	rm -rf			$fs/sbin/mkfs.ntfs
    1.64 +	rm -rf			$fs/usr/s*
    1.65 +	rm -rf			$fs/usr/share
    1.66 +	rm -rf			$fs/usr/lib/pkgconfig
    1.67 +	rm -rf			$fs/usr/lib/*.a
    1.68 +	rm -rf			$fs/usr/include
    1.69 +	touch			$fs/etc/filesystems
    1.70 +	#this link allows udisks2 to use ntfs-3g
    1.71  	cd $fs/sbin
    1.72  	ln -s mount.ntfs-3g mount.ntfs
    1.73  }
    1.74 @@ -50,7 +59,7 @@
    1.75  # Pre remove and post install commands for Tazpkg.
    1.76  pre_remove()
    1.77  {
    1.78 -	sed -i '/^$PACKAGE$/d' "$1/etc/filesystems"
    1.79 +	sed -i '/^$PACKAGE$/d'	"$1/etc/filesystems"
    1.80  }
    1.81  
    1.82  post_install()