cppi 1.18

Closes Homebrew/homebrew#23102.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Ryota Ozaki 2013-10-07 23:52:46 +09:00 committed by Adam Vandenberg
parent a2ee71cf63
commit d6baf19237

21
Formula/cppi.rb Normal file
View file

@ -0,0 +1,21 @@
require 'formula'
class Cppi < Formula
homepage 'http://www.gnu.org/software/cppi/'
url 'http://ftpmirror.gnu.org/cppi/cppi-1.18.tar.xz'
mirror 'http://ftp.gnu.org/cppi/cppi-1.18.tar.xz'
sha1 '5f46d04041fc6e3413d5312db5b99329143a7c33'
def install
system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make"
system "make", "check"
system "make", "install"
end
test do
system "#{bin}/cppi", "--version"
end
end