homebrew-core/Formula/fox.rb

32 lines
883 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Fox < Formula
2012-02-13 06:50:23 +00:00
homepage 'http://www.fox-toolkit.org/'
url 'ftp://ftp.fox-toolkit.org/pub/fox-1.6.44.tar.gz'
md5 '5d3658faf0855826ff6ce8f95e413949'
2012-02-13 06:50:23 +00:00
# Development and stable branches are incompatible
devel do
2012-02-13 06:50:23 +00:00
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