aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/peg.rb
blob: 55a851097ff1ac4db19249b6e771bfd04f90cb5b (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.7.tar.gz'
  md5 'e68a7b8d9ae11275242e84abd86c3258'

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