homebrew-core/Formula/regldg.rb
Martin Planer c853e9cb0d regldg: 1.0 - a regular expression grammar language dictionary generator
Closes Homebrew/homebrew#24452.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-16 17:06:23 -08:00

16 lines
289 B
Ruby

require 'formula'
class Regldg < Formula
homepage 'http://regldg.com'
url 'http://regldg.com/regldg-1.0.0.tar.gz'
sha1 '1a355c1898f90b6a725e2ddc39b4daa2ce83b856'
def install
system "make"
bin.install "regldg"
end
test do
system "#{bin}/regldg", "test"
end
end