aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorXavier Lacoste2013-02-08 14:54:10 +0100
committerAdam Vandenberg2013-05-04 12:36:24 -0700
commitd8c3f1b4793929d94865a7d9efc5e47697b6dc64 (patch)
tree7c7547b22a18cc832e321101f0688eaba1f30a76 /Library/Formula
parentbc3a09973211075d7d0118f583fc7918d3cb4461 (diff)
downloadhomebrew-d8c3f1b4793929d94865a7d9efc5e47697b6dc64.tar.bz2
Coin 3.1.3
Closes #17689. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/coin.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/coin.rb b/Library/Formula/coin.rb
new file mode 100644
index 000000000..da911c0e5
--- /dev/null
+++ b/Library/Formula/coin.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Coin < Formula
+ homepage 'https://bitbucket.org/Coin3D/coin/wiki/Home'
+ url 'https://bitbucket.org/Coin3D/coin/downloads/Coin-3.1.3.tar.gz'
+ sha1 '8e9f05628461963623686d3ec53102214e233dd1'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--with-framework-prefix=#{lib}"
+ system "make install"
+ end
+
+end