talimat 579 B

1234567891011121314151617181920212223
  1. # Tanım: NTFS-3G, Linux sistemleri için istikrarlı, tam özellikli, okuma-yazma NTFS sürücüsüdür.
  2. # URL: http://www.tuxera.com/community/open-source-ntfs-3g/
  3. # Paketçi: milisarge
  4. # Gerekler:
  5. # Grup: sistem
  6. isim=ntfs-3g
  7. surum=2015.3.14
  8. devir=1
  9. kaynak=(http://tuxera.com/opensource/${isim}_ntfsprogs-$surum.tgz)
  10. derle() {
  11. cd ${isim}_ntfsprogs-$surum
  12. ./configure --prefix=/usr \
  13. --disable-static
  14. make
  15. mkdir $PKG/lib
  16. make DESTDIR=$PKG install
  17. ln -s ../bin/ntfs-3g $PKG/sbin/mount.ntfs
  18. ln -s ntfs-3g.8 $PKG/usr/share/man/man8/mount.ntfs.8
  19. chmod -v 4755 $PKG/bin/ntfs-3g
  20. }