Skip to content

Instantly share code, notes, and snippets.

@benlemasurier
Created January 27, 2012 21:26
Show Gist options
  • Save benlemasurier/1691005 to your computer and use it in GitHub Desktop.
Save benlemasurier/1691005 to your computer and use it in GitHub Desktop.
homebrew new
require 'formula'
class Stormfs < Formula
url 'https://github.com/downloads/benlemasurier/stormfs/stormfs-0.01.tar.gz'
homepage 'https://github.com/benlemasurier/stormfs'
md5 '7ec795563156bef7286849c3a1c6c906'
depends_on 'pkg-config'
depends_on 'fuse4x-kext'
depends_on 'fuse4x'
depends_on 'glib'
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