22 lines
564 B
Plaintext
22 lines
564 B
Plaintext
|
# Tanım: NTFS-3G, Linux sistemleri için istikrarlı, tam özellikli, okuma-yazma NTFS sürücüsüdür.
|
|||
|
# URL: http://www.tuxera.com/community/open-source-ntfs-3g/
|
|||
|
# Paketçi: milisarge
|
|||
|
# Gerekler:
|
|||
|
|
|||
|
isim=ntfs-3g
|
|||
|
surum=2015.3.14
|
|||
|
devir=1
|
|||
|
|
|||
|
kaynak=(http://tuxera.com/opensource/${isim}_ntfsprogs-$surum.tgz)
|
|||
|
derle() {
|
|||
|
cd ${isim}_ntfsprogs-$surum
|
|||
|
./configure --prefix=/usr \
|
|||
|
--disable-static
|
|||
|
make
|
|||
|
mkdir $PKG/lib
|
|||
|
make DESTDIR=$PKG install
|
|||
|
ln -s ../bin/ntfs-3g $PKG/sbin/mount.ntfs
|
|||
|
ln -s ntfs-3g.8 $PKG/usr/share/man/man8/mount.ntfs.8
|
|||
|
chmod -v 4755 $PKG/bin/ntfs-3g
|
|||
|
}
|