collada-dom: new website, add devel and head
Closes Homebrew/homebrew#46379. Signed-off-by: Andrew Janke <andrew@apjanke.net>
This commit is contained in:
parent
8c01f5ce10
commit
c86ddc0594
1 changed files with 13 additions and 3 deletions
|
@ -1,15 +1,25 @@
|
|||
class ColladaDom < Formula
|
||||
desc "C++ library for loading and saving COLLADA data"
|
||||
homepage "http://www.collada.org/mediawiki/index.php/Portal:COLLADA_DOM"
|
||||
homepage "https://www.khronos.org/collada/wiki/Portal:COLLADA_DOM"
|
||||
url "https://downloads.sourceforge.net/project/collada-dom/Collada%20DOM/Collada%20DOM%202.4/collada-dom-2.4.0.tgz"
|
||||
sha256 "5ca2d12f744bdceff0066ed3067b3b23d6859581fb0d657f98ba4487d8fa3896"
|
||||
head "https://github.com/rdiankov/collada-dom.git"
|
||||
|
||||
depends_on "cmake" => :build
|
||||
depends_on "pcre"
|
||||
depends_on "boost"
|
||||
|
||||
stable do
|
||||
# Fix build of minizip: quoting arguments to cmake's add_definitions doesn't work the way they thought it did.
|
||||
# Fixed in 2.4.2; remove this when version gets bumped
|
||||
# https://github.com/rdiankov/collada-dom/issues/3
|
||||
patch :DATA
|
||||
end
|
||||
|
||||
devel do
|
||||
url "https://github.com/rdiankov/collada-dom/archive/v2.4.4.tar.gz"
|
||||
sha256 "0dfa494827faa971310c871535b319cadbd0c2d6958ee11b303c61a55a5a437a"
|
||||
end
|
||||
|
||||
def install
|
||||
system "cmake", ".", *std_cmake_args
|
||||
|
|
Loading…
Reference in a new issue