aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/assimp.rb
blob: 6b1d716f1a7d31d985760f96536178e8a08bc6e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Assimp < Formula
  homepage 'http://assimp.sourceforge.net/'
  url "https://downloads.sourceforge.net/project/assimp/assimp-3.1/assimp-3.1.1_no_test_models.zip"
  sha1 "d7bc1d12b01d5c7908d85ec9ff6b2d972e565e2d"
  version "3.1.1"

  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