Commit 5cc5ed9f authored by lyxell's avatar lyxell Committed by GitHub

Merge pull request #409 from uberhacker/feature/add-sshfs-command

Add sshfs command
parents 6b5b56fb 1cb9e744
require 'package'
class Sshfs < Package
version '2.8'
source_url 'https://github.com/libfuse/sshfs/releases/download/sshfs_2.8/sshfs-2.8.tar.gz'
source_sha1 '2b792aa5b3a45e0c3fe65c44bd9da8f64a690830'
depends_on 'glib'
depends_on 'fuse'
def self.build
system "./configure --prefix=/usr/local"
system "make"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment