wok-current 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 | 1dd5aa4fec8e |
children | 19e4434dde5f |
files | ntfs-3g-dev/receipt ntfs-3g/receipt |
line diff
1.1 --- a/ntfs-3g-dev/receipt Mon May 16 14:53:05 2022 +0100 1.2 +++ b/ntfs-3g-dev/receipt Mon May 16 16:20:40 2022 +0100 1.3 @@ -1,22 +1,21 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="ntfs-3g-dev" 1.7 -VERSION="2017.3.23" 1.8 +VERSION="2021.8.22" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="The free ntfs driver devel files." 1.11 +SHORT_DESC="The free ntfs driver development files." 1.12 MAINTAINER="pankso@slitaz.org" 1.13 LICENSE="GPL2" 1.14 -WANTED="ntfs-3g" 1.15 WEB_SITE="https://www.tuxera.com/community/open-source-ntfs-3g/" 1.16 1.17 -DEPENDS="fuse2-dev pkg-config" 1.18 +DEPENDS="fuse-dev pkg-config" 1.19 +WANTED="ntfs-3g" 1.20 1.21 # Rules to gen a SliTaz package suitable for Tazpkg. 1.22 genpkg_rules() 1.23 { 1.24 - mkdir -p $fs/usr/lib 1.25 - cp -a $install/usr/include $fs/usr 1.26 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.27 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.28 + cook_copy_folders include 1.29 + cook_copy_folders pkgconfig 1.30 + cook_copy_files *.*a 1.31 } 1.32
2.1 --- a/ntfs-3g/receipt Mon May 16 14:53:05 2022 +0100 2.2 +++ b/ntfs-3g/receipt Mon May 16 16:20:40 2022 +0100 2.3 @@ -1,20 +1,22 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="ntfs-3g" 2.7 -VERSION="2017.3.23" 2.8 +VERSION="2021.8.22" 2.9 CATEGORY="system-tools" 2.10 -SHORT_DESC="Read/write NTFS driver for FUSE" 2.11 +TAGS="windows" 2.12 +SHORT_DESC="Read and write NTFS driver for FUSE." 2.13 MAINTAINER="pankso@slitaz.org" 2.14 LICENSE="GPL2" 2.15 +WEB_SITE="https://www.tuxera.com/community/open-source-ntfs-3g/" 2.16 + 2.17 SOURCE="ntfs-3g_ntfsprogs" 2.18 TARBALL="$SOURCE-$VERSION.tgz" 2.19 -WEB_SITE="https://www.tuxera.com/community/open-source-ntfs-3g/" 2.20 WGET_URL="https://tuxera.com/opensource/$TARBALL" 2.21 + 2.22 +DEPENDS="attr fuse" 2.23 +BUILD_DEPENDS="attr-dev fuse-dev libtool util-linux-uuid-dev" 2.24 + 2.25 CONFIG_FILES="/etc/filesystems" 2.26 -TAGS="windows" 2.27 - 2.28 -DEPENDS="fuse2 attr" 2.29 -BUILD_DEPENDS="fuse2-dev attr-dev util-linux-uuid-dev libtool" 2.30 2.31 current_version() 2.32 { 2.33 @@ -26,23 +28,30 @@ 2.34 compile_rules() 2.35 { 2.36 mkdir -p $DESTDIR/lib 2.37 - ./configure --prefix=/usr \ 2.38 - --disable-static \ 2.39 - --with-fuse=internal \ 2.40 - --mandir=/usr/share/man $CONFIGURE_ARGS && 2.41 + ./configure \ 2.42 + --prefix=/usr \ 2.43 + --disable-static \ 2.44 + --with-fuse=internal \ 2.45 + --mandir=/usr/share/man \ 2.46 + $CONFIGURE_ARGS && 2.47 make && 2.48 - make DESTDIR=$DESTDIR install 2.49 + make install DESTDIR=$DESTDIR 2.50 } 2.51 2.52 # Rules to gen a SliTaz package suitable for Tazpkg. 2.53 genpkg_rules() 2.54 { 2.55 mkdir -p $fs/etc 2.56 - cp -a $install/. $fs/. 2.57 - rm -rf $fs/usr/bin/ntfs[a-z]* $fs/sbin/mkfs.ntfs $fs/usr/s* 2.58 - rm -rf $fs/usr/share $fs/usr/lib/pkgconfig $fs/usr/lib/*.a $fs/usr/include 2.59 - touch $fs/etc/filesystems 2.60 - #this link allow udisks2 to use ntfs-3g 2.61 + cp -a $install/. $fs/. 2.62 + rm -rf $fs/usr/bin/ntfs[a-z]* 2.63 + rm -rf $fs/sbin/mkfs.ntfs 2.64 + rm -rf $fs/usr/s* 2.65 + rm -rf $fs/usr/share 2.66 + rm -rf $fs/usr/lib/pkgconfig 2.67 + rm -rf $fs/usr/lib/*.a 2.68 + rm -rf $fs/usr/include 2.69 + touch $fs/etc/filesystems 2.70 + #this link allows udisks2 to use ntfs-3g 2.71 cd $fs/sbin 2.72 ln -s mount.ntfs-3g mount.ntfs 2.73 } 2.74 @@ -50,7 +59,7 @@ 2.75 # Pre remove and post install commands for Tazpkg. 2.76 pre_remove() 2.77 { 2.78 - sed -i '/^$PACKAGE$/d' "$1/etc/filesystems" 2.79 + sed -i '/^$PACKAGE$/d' "$1/etc/filesystems" 2.80 } 2.81 2.82 post_install()