mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
Add sshfs command
This commit is contained in:
19
packages/sshfs.rb
Normal file
19
packages/sshfs.rb
Normal file
@@ -0,0 +1,19 @@
|
||||
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 'glib2'
|
||||
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
|
||||
Reference in New Issue
Block a user