homebrew-core/Formula/hexedit.rb

14 lines
381 B
Ruby

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