Coin 3.1.3

Closes Homebrew/homebrew#17689.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Xavier Lacoste 2013-02-08 14:54:10 +01:00 committed by Adam Vandenberg
parent d427f76d83
commit 352df423e2
1 changed files with 15 additions and 0 deletions

15
Formula/coin.rb Normal file
View File

@ -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