diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/peg.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/peg.rb b/Library/Formula/peg.rb new file mode 100644 index 000000000..860edcff7 --- /dev/null +++ b/Library/Formula/peg.rb @@ -0,0 +1,15 @@ +require 'formula' + +class Peg <Formula + url 'http://piumarta.com/software/peg/peg-0.1.4.tar.gz' + homepage 'ihttp://piumarta.com/software/peg/' + md5 'feb52a19a749f08fa8602387f1acbd93' + + aka "leg" + + def install + system "make all" + bin.install %w[peg leg] + man1.install gzip("peg.1") + end +end |
