2011-09-26 20:55:51 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Assimp < Formula
|
|
|
|
homepage 'http://assimp.sourceforge.net/'
|
2012-02-22 05:12:27 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/assimp/assimp-2.0/assimp--2.0.863-sdk.zip'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'eb6938c134e7110a96243570e52a8b860d15d915'
|
2011-09-26 20:55:51 +00:00
|
|
|
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
depends_on 'boost'
|
|
|
|
|
|
|
|
def install
|
2012-05-22 21:37:04 +00:00
|
|
|
system "cmake", ".", *std_cmake_args
|
2011-09-26 20:55:51 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
2012-05-15 18:31:21 +00:00
|
|
|
system "#{bin}/assimp", "version"
|
2011-09-26 20:55:51 +00:00
|
|
|
end
|
|
|
|
end
|