blob: 1a0eadbeb1168c26662159c64e998e3c73a84dc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# 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
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
}
|