blob: 29082e5e29f2bf73e9ee0f8ebf669794e636ad6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Permet la lecture/écriture des partitions NTFS
# URL: http://www.ntfs-3g.org
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on:
name=ntfs-3g
version=2009.4.4
release=1
source=(http://www.ntfs-3g.org/$name-$version.tgz)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-static \
--disable-ldconfig
make
make DESTDIR=$PKG install
chmod a-x $PKG/lib/*.so
rm -rf $PKG/usr/share/doc
}
|