-
Notifications
You must be signed in to change notification settings - Fork 42
62 lines (50 loc) · 2.35 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
class CoinAT313 < Formula
desc "Retained-mode toolkit for 3D graphics development"
homepage "https://bitbucket.org/Coin3D/coin/wiki/Home"
url "https://bitbucket.org/Coin3D/coin/downloads/Coin-3.1.3.tar.gz"
sha256 "583478c581317862aa03a19f14c527c3888478a06284b9a46a0155fa5886d417"
revision 1
bottle do
root_url "https://github.com/cartr/homebrew-qt4-bottles/releases/download/bottle-qt4"
sha256 sierra: "323796851c0d3556b23eaaa1ba6400a49f3235d4c0bb52c356843d03b5352f18"
sha256 el_capitan: "91cd3072b9034640aec2ba8058f9dbfb7160802c5a1ed1d4b91b01fa7dae7dda"
sha256 yosemite: "67f8f0d490afee4095a23fb36b3334947d25d41c8693d4bd8a612a0ccf6212cc"
end
option "without-soqt", "Build without SoQt"
if build.with? "soqt"
depends_on "pkg-config" => :build
depends_on "cartr/qt4/qt@4"
end
resource "soqt" do
url "https://bitbucket.org/Coin3D/coin/downloads/SoQt-1.5.0.tar.gz"
sha256 "f6a34b4c19e536c00f21aead298cdd274a7a0b03a31826fbe38fc96f3d82ab91"
end
# https://bitbucket.org/Coin3D/coin/pull-request/3/missing-include/diff
patch do
url "https://bitbucket.org/cbuehler/coin/commits/e146a6a93a6b807c28c3d73b3baba80fa41bc5f6/raw"
sha256 "6ecbd868ed574339b7fec3882e5fdccd40a60094800f9b5c081899091fdc3ab5"
end
def install
# https://bitbucket.org/Coin3D/coin/issue/47 (fix misspelled test flag)
inreplace "configure", "-fno-for-scoping", "-fno-for-scope"
# https://bitbucket.org/Coin3D/coin/issue/45 (suppress math-undefs)
# https://ftp.netbsd.org/pub/pkgsrc/current/pkgsrc/graphics/Coin/patches/patch-include_Inventor_C_base_math-undefs.h
inreplace "include/Inventor/C/base/math-undefs.h", "#ifndef COIN_MATH_UNDEFS_H", "#if false"
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-framework-prefix=#{frameworks}"
system "make", "install"
if build.with? "soqt"
resource("soqt").stage do
ENV.deparallelize
# https://bitbucket.org/Coin3D/coin/issue/40#comment-7888751
inreplace "configure", /^(LIBS=\$sim_ac_uniqued_list)$/, "# \\1"
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--with-framework-prefix=#{frameworks}",
"--prefix=#{prefix}"
system "make", "install"
end
end
end
end