19 lines
695 B
Ruby
19 lines
695 B
Ruby
class Peg < Formula
|
|
desc "Program to perform pattern matching on text"
|
|
homepage "http://piumarta.com/software/peg/"
|
|
url "http://piumarta.com/software/peg/peg-0.1.18.tar.gz"
|
|
sha256 "20193bdd673fc7487a38937e297fff08aa73751b633a086ac28c3b34890f9084"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "44d0ab83d1bc3ee71294d328dc70dd14206b8d8ddf05a195f2cdf354d746d5dc" => :el_capitan
|
|
sha256 "9abe69e43c8e2672aa7b5b26df5c80976c2d0365b5d85d672e8948cebe88646f" => :yosemite
|
|
sha256 "bbe71ecc8acb17bdf2538f41ae56472bc104a69e310cfd533565507c3468c53c" => :mavericks
|
|
end
|
|
|
|
def install
|
|
system "make", "all"
|
|
bin.install %w[peg leg]
|
|
man1.install gzip("src/peg.1")
|
|
end
|
|
end
|