forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ggobi.rb
95 lines (90 loc) · 2.93 KB
/
ggobi.rb
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
class Ggobi < Formula
desc "A visualization program for exploring high-dimensional data"
homepage "http://www.ggobi.org"
url "http://www.ggobi.org/downloads/ggobi-2.1.11.tar.bz2"
sha256 "2c4ddc3ab71877ba184523e47b0637526e6f3701bd9afb6472e6dfc25646aed7"
bottle do
sha256 "b5c0ecade5536fff6c9309f5ced8ab76839b8d87f644ae18a11d13bbfd6fe231" => :el_capitan
sha256 "a62158696190196fddc92ad497b4b13096dbfddc26a30b5b029d4741354bf594" => :yosemite
sha256 "26209f33759bd90a90c260e78ffaa8c6ea78acccb7ca9bc000a66ffdf45db2d6" => :mavericks
end
depends_on "pkg-config" => :build
depends_on "gtk+"
depends_on "gettext"
depends_on "libtool" => :run
def install
# Necessary for ggobi to build - based on patch from MacPorts
# See: https://trac.macports.org/export/64669/trunk/dports/science/ggobi/files/patch-src-texture.diff
# Reported at https://groups.google.com/d/msg/ggobi/0yiepEUgjiM/nXTVoMaAzj8J
inreplace "src/texture.c", "psort", "p_sort"
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-all-plugins"
system "make", "install"
end
test do
# executable (GUI)
system "#{bin}/ggobi", "--version"
# API
(testpath/"test.c").write <<-EOS.undent
#include <GGobiAPI.h>
int main(int argc, char *argv[]) {
const char *string = GGobi_getVersionString();
return 0;
}
EOS
ENV.libxml2
atk = Formula["atk"]
cairo = Formula["cairo"]
fontconfig = Formula["fontconfig"]
freetype = Formula["freetype"]
gdk_pixbuf = Formula["gdk-pixbuf"]
gettext = Formula["gettext"]
glib = Formula["glib"]
gtkx = Formula["gtk+"]
libpng = Formula["libpng"]
pango = Formula["pango"]
pixman = Formula["pixman"]
flags = (ENV.cflags || "").split + (ENV.cppflags || "").split + (ENV.ldflags || "").split
flags += %W[
-I#{atk.opt_include}/atk-1.0
-I#{cairo.opt_include}/cairo
-I#{fontconfig.opt_include}
-I#{freetype.opt_include}/freetype2
-I#{gdk_pixbuf.opt_include}/gdk-pixbuf-2.0
-I#{gettext.opt_include}
-I#{glib.opt_include}/glib-2.0
-I#{glib.opt_lib}/glib-2.0/include
-I#{gtkx.opt_include}/gtk-2.0
-I#{gtkx.opt_lib}/gtk-2.0/include
-I#{include}/ggobi
-I#{libpng.opt_include}/libpng16
-I#{pango.opt_include}/pango-1.0
-I#{pixman.opt_include}/pixman-1
-D_REENTRANT
-L#{atk.opt_lib}
-L#{cairo.opt_lib}
-L#{gdk_pixbuf.opt_lib}
-L#{gettext.opt_lib}
-L#{glib.opt_lib}
-L#{gtkx.opt_lib}
-L#{lib}
-L#{pango.opt_lib}
-latk-1.0
-lcairo
-lgdk-quartz-2.0
-lgdk_pixbuf-2.0
-lggobi
-lgio-2.0
-lglib-2.0
-lgobject-2.0
-lgtk-quartz-2.0
-lintl
-lpango-1.0
-lpangocairo-1.0
-lxml2
]
system ENV.cc, "test.c", "-o", "test", *flags
system "./test"
end
end