homebrew-core/Formula/clib.rb

24 lines
586 B
Ruby
Raw Normal View History

require "formula"
class Clib < Formula
homepage "https://github.com/clibs/clib"
2014-03-18 07:42:11 +00:00
url "https://github.com/clibs/clib/archive/1.1.2.tar.gz"
sha1 "5faace8b907e882293ed5ccbe17ce222d9013694"
2014-02-26 13:20:32 +00:00
bottle do
cellar :any
sha1 "10a397578f2b73b308a5d0303e58a293537f985e" => :mavericks
sha1 "b685a52f56d730a8e9bc3ed17b3e1af623b7ca1b" => :mountain_lion
sha1 "6797bfb01ff5d24f774e77ebd0d99bd3ec7fb610" => :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