homebrew-core/Formula/peg.rb
Gregory Pakosz cdc1e49ddc peg 0.1.13
Closes Homebrew/homebrew#23626.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-10-26 08:42:01 -07: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.13.tar.gz'
sha1 'ecf33104907ed18339395874245a6a0bd2b4f515'
def install
system "make all"
bin.install %w[peg leg]
man1.install gzip("src/peg.1")
end
end