3b66668632
Closes Homebrew/homebrew#10457. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
13 lines
291 B
Ruby
13 lines
291 B
Ruby
require 'formula'
|
|
|
|
class Peg < Formula
|
|
homepage 'http://piumarta.com/software/peg/'
|
|
url 'http://piumarta.com/software/peg/peg-0.1.7.tar.gz'
|
|
md5 'e68a7b8d9ae11275242e84abd86c3258'
|
|
|
|
def install
|
|
system "make all"
|
|
bin.install %w[peg leg]
|
|
man1.install gzip("peg.1")
|
|
end
|
|
end
|