aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/peg.rb
blob: e0c50ea3be72f2e65c20cae597ae04e9bea9187c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Peg < Formula
  homepage 'http://piumarta.com/software/peg/'
  url 'http://piumarta.com/software/peg/peg-0.1.9.tar.gz'
  md5 '26888aff55d5578b8eb2b3f42c4ed587'

  def install
    system "make all"
    bin.install %w[peg leg]
    man1.install gzip("peg.1")
  end
end