88779ade49
Closes Homebrew/homebrew#14653.
13 lines
386 B
Ruby
13 lines
386 B
Ruby
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
|