diff options
| author | Jonathan Schleifer | 2012-01-08 01:42:26 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2012-01-08 11:33:39 -0800 |
| commit | 2864a8e31ab1381467d97edc48724a46df6c25c6 (patch) | |
| tree | e511fee1816c4a81a7f92cdc95c197068584f32a /Library/Formula/ht.rb | |
| parent | 2738ff352fcb045fa88c5051c6e196546d00baf2 (diff) | |
| download | homebrew-2864a8e31ab1381467d97edc48724a46df6c25c6.tar.bz2 | |
ht 2.0.18
ht is a hex editor and disassembler.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/ht.rb')
| -rw-r--r-- | Library/Formula/ht.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/ht.rb b/Library/Formula/ht.rb new file mode 100644 index 000000000..6ae2a51f2 --- /dev/null +++ b/Library/Formula/ht.rb @@ -0,0 +1,16 @@ +require 'formula' + +class Ht < Formula + url 'http://downloads.sourceforge.net/project/hte/ht-source/ht-2.0.18.tar.bz2' + homepage 'http://hte.sf.net/' + md5 '9cd5c52bb3fbae5c631875cd0de3318c' + + depends_on 'lzo' + + def install + system "chmod +x ./install-sh" + system "./configure", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end +end |
