homebrew-core/Formula/assimp.rb

19 lines
446 B
Ruby
Raw Normal View History

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"
2014-03-18 03:44:49 +00:00
head 'https://github.com/assimp/assimp.git'
depends_on 'cmake' => :build
depends_on 'boost'
def install
system "cmake", ".", *std_cmake_args
system "make install"
end
end