aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorStefan2014-02-25 22:36:41 +0100
committerBrett Koonce2014-02-25 20:24:45 -0600
commit27a4a0bd0d4a32c10714d2e26fa33a79a9f46d42 (patch)
treeee0e111e6f4457ebaabec0d1735ae1acfbfb3731 /Library/Formula
parent737d7dcdfedb4e721b23f6b7759295a61063ae00 (diff)
downloadhomebrew-27a4a0bd0d4a32c10714d2e26fa33a79a9f46d42.tar.bz2
stormfs 0.03
Closes #27009. Signed-off-by: Brett Koonce <koonce@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/stormfs.rb23
1 files changed, 5 insertions, 18 deletions
diff --git a/Library/Formula/stormfs.rb b/Library/Formula/stormfs.rb
index cc5e263df..0d1460f51 100644
--- a/Library/Formula/stormfs.rb
+++ b/Library/Formula/stormfs.rb
@@ -2,33 +2,20 @@ require 'formula'
class Stormfs < Formula
homepage 'https://github.com/benlemasurier/stormfs'
- url 'https://github.com/downloads/benlemasurier/stormfs/stormfs-0.01.tar.gz'
- sha1 'd86bb74beb4b4343b63b3eda3e6bd6f4db982bbb'
+ url 'https://github.com/benlemasurier/stormfs/archive/v0.03.tar.gz'
+ sha1 'bae7aeb409b910dd3844cd930f3ad9427d7e1609'
depends_on 'pkg-config' => :build
+ depends_on :autoconf
+ depends_on :automake
depends_on 'glib'
depends_on 'fuse4x'
depends_on 'curl' if MacOS.version <= :leopard
- def patches; DATA; end
-
def install
+ system "./autogen.sh"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
-
-__END__
-diff --git a/src/curl.c b/src/curl.c
-index de43059..0b02053 100644
---- a/src/curl.c
-+++ b/src/curl.c
-@@ -23,7 +23,6 @@
- #include <sys/stat.h>
- #include <unistd.h>
- #include <curl/curl.h>
--#include <curl/types.h>
- #include <curl/easy.h>
- #include <pthread.h>
- #include <glib.h>