blob: c0bba78f083139f5c02230198daf6e50b28385eb (
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.15.tar.gz'
  sha1 '85b8d85f3f6678372624d5013372ca7175604976'
  def install
    system "make all"
    bin.install %w[peg leg]
    man1.install gzip("src/peg.1")
  end
end
 |