aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/abnfgen.rb
blob: 34126ff08dffe79e3c2ce07d8db2571ab0398760 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Abnfgen < Formula
  homepage 'http://www.quut.com/abnfgen/'
  url 'http://www.quut.com/abnfgen/abnfgen-0.16.tar.gz'
  sha1 '0ed2d09fc1601bb22bcd452000c2e4fd9b2bff81'

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