aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/doublecpp.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/doublecpp.rb')
-rw-r--r--Library/Formula/doublecpp.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/doublecpp.rb b/Library/Formula/doublecpp.rb
new file mode 100644
index 000000000..39b11961a
--- /dev/null
+++ b/Library/Formula/doublecpp.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Doublecpp < Formula
+ url 'http://downloads.sourceforge.net/doublecpp/doublecpp-0.6.3.tar.gz'
+ homepage 'http://doublecpp.sourceforge.net/'
+ md5 '0537ff74de82901f2e3bd92aaa677b3d'
+
+ def install
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end