Skip to content

Instantly share code, notes, and snippets.

@benlemasurier
Created January 30, 2012 03:01
Show Gist options
  • Save benlemasurier/1702205 to your computer and use it in GitHub Desktop.
Save benlemasurier/1702205 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment