contrib/ntfs-3g/Pkgfile

34 lines
764 B
Plaintext
Raw Normal View History

2007-01-17 11:46:19 +01:00
# Description: Freely available NTFS driver with read and write support.
# URL: https://www.tuxera.com/community/ntfs-3g-download/
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: fuse
2007-01-17 11:46:19 +01:00
name=ntfs-3g
version=2017.3.23
release=1
source=(https://tuxera.com/opensource/ntfs-3g_ntfsprogs-$version.tgz)
2007-01-17 11:46:19 +01:00
build() {
cd ntfs-3g_ntfsprogs-$version
2015-05-23 03:26:43 +02:00
install -d $PKG/lib
./configure \
--prefix=/usr \
--disable-ldconfig \
2016-10-07 02:06:21 +02:00
--with-fuse=external \
--enable-posix-acls \
--enable-extras
2007-01-17 11:46:19 +01:00
make
make DESTDIR=$PKG install
2008-04-13 01:07:22 +02:00
2016-10-22 10:35:30 +02:00
ln -s ../bin/ntfs-3g $PKG/sbin/mount.ntfs
ln -s ../usr/bin/ntfsfix $PKG/sbin/fsck.ntfs
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 11:46:19 +01:00
}