ext4fuse 0.1.1

Closes Homebrew/homebrew#15268.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Aaron Carroll 2012-10-03 17:08:54 +10:00 committed by Adam Vandenberg
parent b1882c83d0
commit cbb72d1f12

17
Formula/ext4fuse.rb Normal file
View file

@ -0,0 +1,17 @@
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