homebrew-core/Formula/hexcurse.rb

18 lines
531 B
Ruby
Raw Normal View History

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