From e0425c743843e00a50a93e5a90d9f3746d4200a3 Mon Sep 17 00:00:00 2001 From: Ben LeMasurier Date: Mon, 30 Jan 2012 09:00:28 -0700 Subject: New Formula: STORMfs STORMfs is a FUSE abstraction layer for cloud storage. STORMfs allows you to mount cloud storage as a local filesystem. Currently supporting Amazon S3, Eucalyptus (Walrus S3), and Google Cloud Storage[1]. This is the first (alpha) release, primarily focused on users who whish to contribute feedback and bug reports. [1] Interoperable Access (non-native API) Closes #9873. Signed-off-by: Charlie Sharpsteen --- Library/Formula/stormfs.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Library/Formula/stormfs.rb (limited to 'Library/Formula') 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 -- cgit v1.2.3