2007-01-17 21:46:19 +11:00
|
|
|
# Description: Freely available NTFS driver with read and write support.
|
|
|
|
# URL: http://www.ntfs-3g.org/
|
|
|
|
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
|
|
|
|
# Packager: Danny Rawlins, romster at shortcircuit dot net dot au
|
|
|
|
# Depends on: fuse
|
|
|
|
|
|
|
|
name=ntfs-3g
|
2007-11-21 09:30:32 +11:00
|
|
|
version=1.1120
|
2007-01-17 21:46:19 +11:00
|
|
|
release=1
|
|
|
|
source=(http://www.ntfs-3g.org/ntfs-3g-$version.tgz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ntfs-3g-$version
|
2007-04-18 16:16:54 +10:00
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2007-07-10 14:18:47 +10:00
|
|
|
--mandir=/usr/man \
|
2007-08-20 04:10:10 +10:00
|
|
|
--disable-static \
|
|
|
|
--disable-ldconfig
|
2007-04-18 16:16:54 +10:00
|
|
|
|
2007-01-17 21:46:19 +11:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|
|
|
|
|