aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hexedit.rb
blob: 1e81a9d2baeae3cd305720a879493703a07f6423 (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'
  md5 '0d2f48610006278cd93359fea9a06d5c'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}", "--mandir=#{man}"
    system "make install"
  end
end