2007-01-17 21:46:19 +11:00
|
|
|
# Description: Freely available NTFS driver with read and write support.
|
2010-08-23 01:04:27 +10:00
|
|
|
# URL: http://www.tuxera.com/community/ntfs-3g-download/
|
2014-11-10 23:28:07 +11:00
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
|
|
# Packager: Danny Rawlins, crux at romster dot me
|
2015-05-23 21:25:07 +10:00
|
|
|
# Depends on: fuse
|
2007-01-17 21:46:19 +11:00
|
|
|
|
2013-04-13 11:11:58 +10:00
|
|
|
name=ntfs-3g
|
2016-10-07 11:06:21 +11:00
|
|
|
version=2016.2.22
|
2016-10-22 19:35:30 +11:00
|
|
|
release=3
|
2013-04-13 11:11:58 +10:00
|
|
|
source=(http://tuxera.com/opensource/ntfs-3g_ntfsprogs-$version.tgz)
|
2007-01-17 21:46:19 +11:00
|
|
|
|
|
|
|
build() {
|
2013-04-13 11:11:58 +10:00
|
|
|
cd ntfs-3g_ntfsprogs-$version
|
2007-04-18 16:16:54 +10:00
|
|
|
|
2015-05-23 11:26:43 +10:00
|
|
|
install -d $PKG/lib
|
|
|
|
|
2007-04-18 16:16:54 +10:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2015-05-23 21:25:07 +10:00
|
|
|
--disable-ldconfig \
|
2016-10-07 11:06:21 +11:00
|
|
|
--with-fuse=external \
|
|
|
|
--enable-posix-acls \
|
|
|
|
--enable-extras
|
2007-04-18 16:16:54 +10:00
|
|
|
|
2007-01-17 21:46:19 +11:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2008-04-13 09:07:22 +10:00
|
|
|
|
2016-10-22 19:35:30 +11:00
|
|
|
ln -s ../bin/ntfs-3g $PKG/sbin/mount.ntfs
|
|
|
|
ln -s ../bin/ntfsfix $PKG/sbin/fsck.ntfs
|
2016-10-20 18:43:07 +11:00
|
|
|
|
|
|
|
ln -s ntfs-3g.8 $PKG/usr/share/man/man8/mount.ntfs.8
|
|
|
|
ln -s ntfsfix.8 $PKG//usr/share/man/man8/fsck.ntfs.8
|
|
|
|
|
|
|
|
rm -r $PKG/usr/share/doc
|
2007-01-17 21:46:19 +11:00
|
|
|
}
|