homebrew-core/Formula/ext4fuse.rb
Aaron Carroll cbb72d1f12 ext4fuse 0.1.1
Closes Homebrew/homebrew#15268.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-01-04 16:29:06 -08:00

17 lines
385 B
Ruby

require 'formula'
class Ext4fuse < Formula
homepage 'https://github.com/gerard/ext4fuse'
url 'https://github.com/gerard/ext4fuse/archive/v0.1.1.tar.gz'
sha1 '1dbf4dc4859f8d118e80046cef0af2bcee471ea5'
head 'https://github.com/gerard/ext4fuse.git'
depends_on 'pkg-config' => :build
depends_on 'fuse4x'
def install
system 'make'
bin.install 'ext4fuse'
end
end