2014-02-27 01:27:12 +00:00
|
|
|
class Hexcurse < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Ncurses-based console hex editor"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "https://github.com/LonnyGomes/hexcurse"
|
|
|
|
url "https://github.com/LonnyGomes/hexcurse/archive/hexcurse-1.58.tar.gz"
|
|
|
|
sha256 "90470384628e5e31c56c188aa9765ef6939648093f951d6cad8cbbe11fb6bc13"
|
2014-02-27 01:27:12 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}"
|
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2015-08-03 12:55:31 +00:00
|
|
|
system "#{bin}/hexcurse", "-help"
|
2014-02-27 01:27:12 +00:00
|
|
|
end
|
|
|
|
end
|