aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/fox.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/Library/Formula/fox.rb b/Library/Formula/fox.rb
new file mode 100644
index 000000000..1af686c42
--- /dev/null
+++ b/Library/Formula/fox.rb
@@ -0,0 +1,21 @@
+require 'formula'
+
+class Fox <Formula
+ url 'http://www.fox-toolkit.org/ftp/fox-1.7.23.tar.gz'
+ homepage 'http://www.fox-toolkit.org/'
+ md5 'ee8430d6480d3289d54b847f47405670'
+
+ def install
+ ENV.x11
+
+ # Yep, won't find freetype unless this is all set.
+ ENV.append "CFLAGS", "-I/usr/X11/include/freetype2"
+ ENV.append "CPPFLAGS", "-I/usr/X11/include/freetype2"
+ ENV.append "CXXFLAGS", "-I/usr/X11/include/freetype2"
+
+ system "./configure", "--enable-release",
+ "--prefix=#{prefix}",
+ "--with-x", "--with-opengl"
+ system "make install"
+ end
+end