2010-01-07 18:15:11 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Peg < Formula
|
2011-03-16 04:41:40 +00:00
|
|
|
homepage 'http://piumarta.com/software/peg/'
|
2013-10-26 10:36:31 +00:00
|
|
|
url 'http://piumarta.com/software/peg/peg-0.1.13.tar.gz'
|
|
|
|
sha1 'ecf33104907ed18339395874245a6a0bd2b4f515'
|
2010-01-07 18:15:11 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "make all"
|
|
|
|
bin.install %w[peg leg]
|
2013-10-26 10:36:31 +00:00
|
|
|
man1.install gzip("src/peg.1")
|
2010-01-07 18:15:11 +00:00
|
|
|
end
|
|
|
|
end
|