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-12-18 18:18:08 +00:00
|
|
|
url 'http://piumarta.com/software/peg/peg-0.1.15.tar.gz'
|
|
|
|
sha1 '85b8d85f3f6678372624d5013372ca7175604976'
|
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
|