aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/peg.rb
blob: 935a4cec6e61b4438c5c448d2e5ed883d1654d86 (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'
  sha1 '40a3dd06264fef8aaaedcc88f198c0641bf4190d'

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