blob: e3888a56afd9a7ded288445abe19cb5c3edf54cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
class Clib < Formula
homepage "https://github.com/clibs/clib"
url "https://github.com/clibs/clib/archive/1.4.2.tar.gz"
sha1 "47287adfdbb498fa8dfeee32d507c1787d09c435"
head "https://github.com/clibs/clib.git"
bottle do
cellar :any
sha1 "f9d8fc54ec746beb253186b1cb8c30eee5f945d6" => :yosemite
sha1 "82d7f283b9c85566f3e1a7337ec998cc11406c66" => :mavericks
sha1 "602d091a1490a683a0e07e71df7c26ecf430e353" => :mountain_lion
end
def install
ENV["PREFIX"] = prefix
system "make", "install"
end
test do
system "#{bin}/clib", "install", "stephenmathieson/rot13.c"
end
end
|