blob: 23714959738b515717d470eaff046097da979890 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
class Abnfgen < Formula
  url 'http://www.quut.com/abnfgen/abnfgen-0.16.tar.gz'
  homepage 'http://www.quut.com/abnfgen/'
  sha1 '0ed2d09fc1601bb22bcd452000c2e4fd9b2bff81'
  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}", "--mandir=#{man}"
    system "make install"
  end
end
  |