homebrew-core/Formula/assimp.rb
Jack Nagel 0c89a5c8dd Remove redundant versions and update version tests
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-03-11 15:18:56 -05:00

19 lines
420 B
Ruby

require 'formula'
class Assimp < Formula
homepage 'http://assimp.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/assimp/assimp-2.0/assimp--2.0.863-sdk.zip'
md5 '9f41662501bd9d9533c4cf03b7c25d5b'
depends_on 'cmake' => :build
depends_on 'boost'
def install
system "cmake #{std_cmake_parameters} ."
system "make install"
end
def test
system "#{bin}/assimp version"
end
end