homebrew-core/Formula/peg.rb
Andrew 68acc34cad peg 0.1.15
Closes Homebrew/homebrew#25313.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-12-18 20:07:29 -08:00

13 lines
305 B
Ruby

require 'formula'
class Peg < Formula
homepage 'http://piumarta.com/software/peg/'
url 'http://piumarta.com/software/peg/peg-0.1.15.tar.gz'
sha1 '85b8d85f3f6678372624d5013372ca7175604976'
def install
system "make all"
bin.install %w[peg leg]
man1.install gzip("src/peg.1")
end
end