aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hqx.rb
diff options
context:
space:
mode:
authorChris Ballinger2011-12-26 22:15:03 -0500
committerAdam Vandenberg2012-03-13 07:04:06 -0700
commitc7487d9e5644f0190e3860d43735d78b4b4a3627 (patch)
tree8f69b6d8984e39e2bfc23fc3563bd58b4bcdc4c1 /Library/Formula/hqx.rb
parent33aa888ae8374104866b717917213d42b6727739 (diff)
downloadhomebrew-c7487d9e5644f0190e3860d43735d78b4b4a3627.tar.bz2
hqx 1.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/hqx.rb')
-rw-r--r--Library/Formula/hqx.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/hqx.rb b/Library/Formula/hqx.rb
new file mode 100644
index 000000000..a4f735739
--- /dev/null
+++ b/Library/Formula/hqx.rb
@@ -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