homebrew-core/Formula/hexedit.rb
D J Capelis e025dc9c57 hexedit 1.2.13
Closes Homebrew/homebrew#18449.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-13 06:21:03 -07:00

14 lines
407 B
Ruby

require 'formula'
class Hexedit < Formula
homepage 'http://rigaux.org/hexedit.html'
url 'http://rigaux.org/hexedit-1.2.13.src.tgz'
sha1 '1acb7ca37063d9f4b4d118ef223548fde3b753f1'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end