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