hexedit 1.4.1

Closes #17779.

Signed-off-by: ilovezfs <ilovezfs@icloud.com>
This commit is contained in:
ilovezfs 2017-09-07 07:28:16 -07:00
parent d868454926
commit 63ecca8d70

View file

@ -1,10 +1,9 @@
class Hexedit < Formula
desc "View and edit files in hexadecimal or ASCII"
# Homepage/URL down since at least Jan 2016.
homepage "http://rigaux.org/hexedit.html"
url "http://rigaux.org/hexedit-1.2.13.src.tgz"
mirror "https://mirrors.ocf.berkeley.edu/debian/pool/main/h/hexedit/hexedit_1.2.13.orig.tar.gz"
sha256 "6a126da30a77f5c0b08038aa7a881d910e3b65d13767fb54c58c983963b88dd7"
url "https://github.com/pixel/hexedit/archive/1.4.1.tar.gz"
sha256 "4104905394f1313c47e22d4c81e9df538b90cec9004b3230d68cd055b84f5715"
head "https://github.com/pixel/hexedit.git"
bottle do
cellar :any_skip_relocation
@ -15,8 +14,12 @@ class Hexedit < Formula
sha256 "1931661462fffa57fb8b0b6b7cb3c4439ed72b93f5a0a6db94e9bb2f5fa1cd4d" => :mavericks
end
depends_on "autoconf" => :build
depends_on "automake" => :build
def install
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
system "./autogen.sh"
system "./configure", "--prefix=#{prefix}"
system "make", "install"
end