aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBrian Jensen2013-11-19 11:46:25 +0100
committerMike McQuaid2013-11-19 12:37:56 +0000
commit20e4397938348e2c2b5167e9f3b45b3672cfaac9 (patch)
treec18838a842f56891a4a3a002332b4c45697b745c /Library
parent9d10c43e905879535c689a76f8d69e15e68dbb71 (diff)
downloadhomebrew-20e4397938348e2c2b5167e9f3b45b3672cfaac9.tar.bz2
assimp: add --HEAD
Closes #24482. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/assimp.rb9
1 files changed, 6 insertions, 3 deletions
diff --git a/Library/Formula/assimp.rb b/Library/Formula/assimp.rb
index ddde95735..e6f1a84e2 100644
--- a/Library/Formula/assimp.rb
+++ b/Library/Formula/assimp.rb
@@ -4,14 +4,17 @@ class Assimp < Formula
homepage 'http://assimp.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/assimp/assimp-3.0/assimp--3.0.1270-source-only.zip'
sha1 'e80a3a4326b649ed6585c0ce312ed6dd68942834'
+ head 'https://github.com/assimp/assimp.git'
depends_on 'cmake' => :build
depends_on 'boost'
def patches
- #makes assimp3 compile with clang
- #reported upstream http://sourceforge.net/p/assimp/discussion/817654/thread/381fa18a
- #and http://sourceforge.net/p/assimp/patches/43/
+ return if build.head?
+ # makes assimp3 compile with clang
+ # Reported upstream http://sourceforge.net/p/assimp/discussion/817654/thread/381fa18a
+ # and http://sourceforge.net/p/assimp/patches/43/
+ # Committed in R1339, so when building HEAD no need for this patch
DATA
end