2011-03-10 05:11:03 +00:00
|
|
|
class Abnfgen < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Quickly generate random documents that match an ABFN grammar"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "http://www.quut.com/abnfgen/"
|
|
|
|
url "http://www.quut.com/abnfgen/abnfgen-0.16.tar.gz"
|
|
|
|
sha256 "c256712a97415c86e1aa1847e2eac00019ca724d56b8ee921d21b258090d333a"
|
2010-09-19 01:53:15 +00:00
|
|
|
|
2014-12-12 07:58:19 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "44b60ec95b34c9869787025439ac699bb76e916e" => :yosemite
|
|
|
|
sha1 "f24c3fcf1371e5da17994205b887054078de2a92" => :mavericks
|
|
|
|
sha1 "ade80460f765a647fe8f2f1457ea54d2ff15219c" => :mountain_lion
|
|
|
|
end
|
|
|
|
|
2010-09-19 01:53:15 +00:00
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
2013-01-26 22:01:15 +00:00
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}"
|
2015-08-03 12:55:31 +00:00
|
|
|
system "make", "install"
|
2010-09-19 01:53:15 +00:00
|
|
|
end
|
2014-12-12 07:47:08 +00:00
|
|
|
|
|
|
|
test do
|
|
|
|
(testpath/"grammar").write %(ring = 1*12("ding" SP) "dong" CRLF)
|
|
|
|
system "#{bin}/abnfgen", (testpath/"grammar")
|
|
|
|
end
|
2010-09-19 01:53:15 +00:00
|
|
|
end
|