aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2014-11-22 14:39:00 +0000
committerMike McQuaid2014-11-22 14:39:28 +0000
commit34970553a86a94d611b9d18a3c24091400a8f697 (patch)
treec4c6ddb7bff850621e58e2b5d51464db6b1e078a /Library
parent7a3c7c4875488d0fe6f6f86e7ec6adbfa94d2a94 (diff)
downloadhomebrew-34970553a86a94d611b9d18a3c24091400a8f697.tar.bz2
assimp: general cleanup.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/assimp.rb13
1 files changed, 7 insertions, 6 deletions
diff --git a/Library/Formula/assimp.rb b/Library/Formula/assimp.rb
index 1c43a356a..e02351c11 100644
--- a/Library/Formula/assimp.rb
+++ b/Library/Formula/assimp.rb
@@ -1,19 +1,20 @@
-require 'formula'
+require "formula"
class Assimp < Formula
- homepage 'http://assimp.sourceforge.net/'
+ 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'
+ head "https://github.com/assimp/assimp.git"
option "without-boost", "Compile without thread safe logging or multithreaded computation if boost isn't installed"
- depends_on 'cmake' => :build
- depends_on 'boost' => :recommended
+
+ depends_on "cmake" => :build
+ depends_on "boost" => :recommended
def install
system "cmake", ".", *std_cmake_args
- system "make install"
+ system "make", "install"
end
end