aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hexedit.rb
blob: 902c2c05ffdc23d591552efa874813563ab86a64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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