homebrew-core/Formula/abnfgen.rb

15 lines
412 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Abnfgen < Formula
homepage 'http://www.quut.com/abnfgen/'
2013-01-26 22:01:15 +00:00
url 'http://www.quut.com/abnfgen/abnfgen-0.16.tar.gz'
sha1 '0ed2d09fc1601bb22bcd452000c2e4fd9b2bff81'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
2013-01-26 22:01:15 +00:00
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end