aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cppi.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/cppi.rb')
-rw-r--r--Library/Formula/cppi.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/Library/Formula/cppi.rb b/Library/Formula/cppi.rb
new file mode 100644
index 000000000..06d02e474
--- /dev/null
+++ b/Library/Formula/cppi.rb
@@ -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