Skip to content

Instantly share code, notes, and snippets.

@chrisballinger
Created December 26, 2011 22:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrisballinger/1522239 to your computer and use it in GitHub Desktop.
Save chrisballinger/1522239 to your computer and use it in GitHub Desktop.
hqx homebrew installation file
require 'formula'
class Hqx < Formula
url 'http://hqx.googlecode.com/files/hqx-1.1.tar.gz'
homepage 'http://code.google.com/p/hqx/'
sha1 'bf08ae10db6cce4d29c84524ec13a3101d31db6b'
depends_on 'devil'
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