talimat 433 B

1234567891011121314151617
  1. # Description: SSH Dosya Aktarım Protokolünü temel alan FUSE istemcisi
  2. # URL: http://fuse.sourceforge.net/sshfs.html
  3. # Packager: milisarge@gmail.com
  4. # Depends on: fuse glib openssh
  5. name=sshfs-fuse
  6. version=2.5
  7. release=1
  8. source=(https://github.com/libfuse/sshfs/releases/download/sshfs_${version//./_}//$name-$version.tar.gz)
  9. build() {
  10. cd $name-$version
  11. ./configure --prefix=/usr
  12. make
  13. make DESTDIR=$PKG install
  14. }