aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/peg.rb
blob: 860edcff7013cda2a03dcd9cc643426a101790ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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