aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/stormfs.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/stormfs.rb b/Library/Formula/stormfs.rb
new file mode 100644
index 000000000..0310b680e
--- /dev/null
+++ b/Library/Formula/stormfs.rb
@@ -0,0 +1,18 @@
+require 'formula'
+
+class Stormfs < Formula
+ url 'https://github.com/downloads/benlemasurier/stormfs/stormfs-0.01.tar.gz'
+ homepage 'https://github.com/benlemasurier/stormfs'
+ md5 'e11b7a1afc7fdd6675d813315c42431b'
+
+ depends_on 'pkg-config' => :build
+ depends_on 'glib'
+ depends_on 'fuse4x'
+ depends_on 'curl' if MacOS.leopard?
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end