From e21780c9abaafc4f86b5a008a519acfde2c1243e Mon Sep 17 00:00:00 2001 From: Martin Lund Date: Fri, 17 Jun 2016 11:35:40 +0200 Subject: [PATCH] ntfs-3g: Update to v2016.2.22 --- ntfs-3g/Buildfile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/ntfs-3g/Buildfile b/ntfs-3g/Buildfile index fb3845f..8d400de 100644 --- a/ntfs-3g/Buildfile +++ b/ntfs-3g/Buildfile @@ -1,15 +1,15 @@ # Description: read-write NTFS driver for Linux -# URL: http://www.tuxera.com/community/open-source-ntfs-3g/ +# URL: http://www.tuxera.com/community/open-source-ntfs-3g # License: GPLv2 name=ntfs-3g -version=2015.3.14 +version=2016.2.22 release=1 -source=(https://tuxera.com/opensource/ntfs-3g_ntfsprogs-2015.3.14.tgz) +source=(https://tuxera.com/opensource/$name\_ntfsprogs-$version.tgz) depends=(fuse) build() { - cd ntfs-3g_ntfsprogs-2015.3.14 + cd $name\_ntfsprogs-$version ./configure --host=$HOST \ --prefix=/usr \ @@ -20,6 +20,9 @@ build() { make -j $JOBS DESTDIR=$PKG install + # Cleanup + rm -r $PKG/usr/share/doc + # Fix libtool files fix_la_files $PKG }