homebrew-core/Formula/clib.rb

24 lines
615 B
Ruby
Raw Normal View History

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"
2014-02-26 13:20:32 +00:00
bottle do
cellar :any
2015-01-27 09:35:44 +00:00
sha1 "f9d8fc54ec746beb253186b1cb8c30eee5f945d6" => :yosemite
sha1 "82d7f283b9c85566f3e1a7337ec998cc11406c66" => :mavericks
sha1 "602d091a1490a683a0e07e71df7c26ecf430e353" => :mountain_lion
2014-02-26 13:20:32 +00:00
end
def install
ENV["PREFIX"] = prefix
system "make", "install"
end
test do
system "#{bin}/clib", "install", "stephenmathieson/rot13.c"
end
end