95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
17 lines
531 B
Ruby
17 lines
531 B
Ruby
class Hexcurse < Formula
|
|
desc "Ncurses-based console hex editor"
|
|
homepage "https://github.com/LonnyGomes/hexcurse"
|
|
url "https://github.com/LonnyGomes/hexcurse/archive/hexcurse-1.58.tar.gz"
|
|
sha256 "90470384628e5e31c56c188aa9765ef6939648093f951d6cad8cbbe11fb6bc13"
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--mandir=#{man}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/hexcurse", "-help"
|
|
end
|
|
end
|