aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Carroll2012-10-03 17:08:54 +1000
committerAdam Vandenberg2013-01-04 16:29:06 -0800
commitdb2c181ff159e61edd60ee7c836b3413095a91b7 (patch)
treecc41907b2bc2bba8cf7c133d6bf6209a3b4e7f31
parent61770996f48c10db1fac1958ad6a23a4d82c896a (diff)
downloadhomebrew-db2c181ff159e61edd60ee7c836b3413095a91b7.tar.bz2
ext4fuse 0.1.1
Closes #15268. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/ext4fuse.rb17
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