blob: 01ae99e99322a1447600af9137cb4b0840dd072b (
plain)
1 # Description: Uses FUSE to mount NTFS filesystem with write support; contains misc ntfs-related utilities
2 # URL: http://www.linux-ntfs.org/
3 # Maintainer: Lucas Hazel, lucas at die dot net dot au
4 # Packager: Matt Housh, jaeger at crux dot nu
5 # Depends on: fuse
6
7 name=ntfsprogs
8 version=2.0.0
9 release=1
10 source=(http://download.sourceforge.net/linux-ntfs/$name-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14 ./configure --prefix=/usr \
15 --mandir=/usr/man \
16 --enable-fuse-module \
17 --disable-gnome-vfs
18 make
19 make DESTDIR=$PKG install
20 }
|