homebrew-core/Formula/cppi.rb
2015-05-30 01:52:20 +02:00

35 lines
1 KiB
Ruby

class Cppi < Formula
homepage "https://www.gnu.org/software/cppi/"
url "http://ftpmirror.gnu.org/cppi/cppi-1.18.tar.xz"
mirror "https://ftp.gnu.org/cppi/cppi-1.18.tar.xz"
sha256 "12a505b98863f6c5cf1f749f9080be3b42b3eac5a35b59630e67bea7241364ca"
bottle do
cellar :any
sha256 "f8198f4b6e76d9310d66d20cb0a5b2b6adc70bee83f0bbeaca8b45b6529ccc60" => :yosemite
sha256 "a37872a422b21892119583f4fe9670ff403d2e40ceb14f50166e2b501938c544" => :mavericks
sha256 "9924d9e02cf7b197d666ffc8e9a56a5d4e442a5fa8c598872c714c7a2dfb37f3" => :mountain_lion
end
def install
system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make"
system "make", "check"
system "make", "install"
end
test do
test = <<-EOS.undent
#ifdef TEST
#include <homebrew.h>
#endif
EOS
assert_equal <<-EOS.undent, pipe_output("#{bin}/cppi", test, 0)
#ifdef TEST
# include <homebrew.h>
#endif
EOS
end
end