Commit 39af813d authored by lyxell's avatar lyxell Committed by GitHub

Merge pull request #408 from uberhacker/feature/add-fuse-library

Add fuse library
parents 5cc5ed9f 1f03127f
require 'package'
class Fuse < Package
version '2.9.7'
source_url 'https://github.com/libfuse/libfuse/releases/download/fuse-2.9.7/fuse-2.9.7.tar.gz'
source_sha1 'cd174e3d37995a42fad32fac92f76cd18e24174f'
def self.build
system "./configure"
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