2011-09-26 20:55:51 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Assimp < Formula
|
|
|
|
homepage 'http://assimp.sourceforge.net/'
|
2014-06-17 23:17:49 +00:00
|
|
|
url "https://downloads.sourceforge.net/project/assimp/assimp-3.1/assimp-3.1.1_no_test_models.zip"
|
|
|
|
sha1 "d7bc1d12b01d5c7908d85ec9ff6b2d972e565e2d"
|
|
|
|
version "3.1.1"
|
2013-06-05 08:28:27 +00:00
|
|
|
|
2014-03-18 03:44:49 +00:00
|
|
|
head 'https://github.com/assimp/assimp.git'
|
|
|
|
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
depends_on 'boost'
|
|
|
|
|
2011-09-26 20:55:51 +00:00
|
|
|
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
|
|
|
|
end
|