blob: 5bef789babf04049d448ebeaf9dcb2d5ac597209 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Description: Diverses outils pour la manipulation des partitions NTFS
# URL: http://www.linux-ntfs.org/doku.php?id=downloads
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: fuse
# Run on: fuse
name=ntfsprogs
version=2.0.0
release=2
source=(http://downloads.sourceforge.net/linux-ntfs/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-gnome-vfs
make
make DESTDIR=$PKG install
}
|