aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/fox.rb
blob: 1af686c4215e57cd3fffa9a80aed9de710c024b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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