Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Chris Ballinger 2011-12-26 22:15:03 -05:00 committed by Adam Vandenberg
parent 9192bfbdf5
commit 811c1659e5
1 changed files with 16 additions and 0 deletions

16
Formula/hqx.rb Normal file
View File

@ -0,0 +1,16 @@
require 'formula'
class Hqx < Formula
homepage 'http://code.google.com/p/hqx/'
url 'http://hqx.googlecode.com/files/hqx-1.1.tar.gz'
sha1 'bf08ae10db6cce4d29c84524ec13a3101d31db6b'
depends_on 'devil'
def install
ENV.deparallelize
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end