blob: 5251f308240b34c7394323a7953cc6b873106e80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Utilitaires pour le système de fichiers NTFS.
# URL: http://www.tuxera.com/
# Maintainer:
# Packager: piernov <piernov@piernov.org>
# Depends on: ntfs-3g
# Run on: ntfs-3g
name=ntfsprogs
version=2012.1.15
release=1
source=(http://tuxera.com/opensource/ntfs-3g_$name-$version.tgz)
build() {
cd ntfs-3g_$name-$version
ac_cv_path_LDCONFIG=/bin/true ./configure --prefix=/usr \
--mandir=/usr/share/man \
--with-fuse=external
make
cd $name
make DESTDIR=$PKG install
}
|