ht 2.0.18
ht is a hex editor and disassembler. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
c2a3ebce87
commit
0741ff948e
1 changed files with 16 additions and 0 deletions
16
Formula/ht.rb
Normal file
16
Formula/ht.rb
Normal file
|
@ -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
|
Loading…
Reference in a new issue