blob: 7a8772b18ea6ee5d3ef0317c6a90e0259d43f909 (
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
|
require 'formula'
class Fox < Formula
homepage 'http://www.fox-toolkit.org/'
url 'ftp://ftp.fox-toolkit.org/pub/fox-1.6.44.tar.gz'
md5 '5d3658faf0855826ff6ce8f95e413949'
# Development and stable branches are incompatible
devel do
url 'http://ftp.fox-toolkit.org/pub/fox-1.7.32.tar.gz'
md5 '1cf2607d15ffad5b664cf65bfcd249bc'
end
fails_with :llvm do
cause "Inline asm errors during build"
end if ARGV.build_devel?
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
|