blob: 05eb52b0be186a7e66ba30d864370f8101e63a90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Description: Permet la lecture/écriture des partitions NTFS
# URL: http://www.tuxera.com/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
name=ntfs-3g
version=2012.1.15
release=1
source=(http://tuxera.com/opensource/${name}_ntfsprogs-$version.tgz)
build() {
cd ${name}_ntfsprogs-$version
ac_cv_path_LDCONFIG=/bin/true ./configure --prefix=/usr \
--mandir=/usr/share/man \
--with-fuse=external
make
for DIR in src libntfs-3g include; do
cd $DIR
make DESTDIR=$PKG install
cd ..
done
ln -s /bin/ntfs-3g $PKG/sbin/mount.ntfs
}
|