aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/collada-dom.rb
blob: 8b85aded8a6e98cbdb172435621bb94c3f4bdd41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
require 'formula'

class ColladaDom < Formula
  homepage 'http://www.collada.org/mediawiki/index.php/Portal:COLLADA_DOM'
  url 'https://downloads.sourceforge.net/project/collada-dom/Collada%20DOM/Collada%20DOM%202.4/collada-dom-2.4.0.tgz'
  sha1 '74e28d670497abc897c06a41df7d28eea2bac836'

  depends_on 'cmake' => :build
  depends_on 'pcre'
  depends_on 'boost'

  # Fix build of minizip: quoting arguments to cmake's add_definitions doesn't work the way they thought it did.
  patch :DATA

  def install
    system "cmake", ".", *std_cmake_args
    system "make install"
  end
end

__END__
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 72b6deb..0c7f7ce 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -100,7 +100,7 @@ endif()

 if( APPLE OR ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
   # apple doesn't have 64bit versions of file opening functions, so add them
-  add_definitions("-Dfopen64=fopen -Dfseeko64=fseeko -Dfseek64=fseek -Dftell64=ftell -Dftello64=ftello")
+  add_definitions(-Dfopen64=fopen -Dfseeko64=fseeko -Dfseek64=fseek -Dftell64=ftell -Dftello64=ftello)
 endif()

 set(COLLADA_DOM_INCLUDE_INSTALL_DIR "include/collada-dom")