diff options
| author | Chris Ballinger | 2011-12-26 22:15:03 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2012-03-13 07:04:06 -0700 |
| commit | c7487d9e5644f0190e3860d43735d78b4b4a3627 (patch) | |
| tree | 8f69b6d8984e39e2bfc23fc3563bd58b4bcdc4c1 /Library/Formula/hqx.rb | |
| parent | 33aa888ae8374104866b717917213d42b6727739 (diff) | |
| download | homebrew-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.rb | 16 |
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 |
