diff options
| author | Aaron Carroll | 2012-10-03 17:08:54 +1000 |
|---|---|---|
| committer | Adam Vandenberg | 2013-01-04 16:29:06 -0800 |
| commit | db2c181ff159e61edd60ee7c836b3413095a91b7 (patch) | |
| tree | cc41907b2bc2bba8cf7c133d6bf6209a3b4e7f31 | |
| parent | 61770996f48c10db1fac1958ad6a23a4d82c896a (diff) | |
| download | homebrew-db2c181ff159e61edd60ee7c836b3413095a91b7.tar.bz2 | |
ext4fuse 0.1.1
Closes #15268.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/ext4fuse.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/ext4fuse.rb b/Library/Formula/ext4fuse.rb new file mode 100644 index 000000000..6bde1fde4 --- /dev/null +++ b/Library/Formula/ext4fuse.rb @@ -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 |
