41fdcfd343
Closes Homebrew/homebrew#24500. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
27 lines
828 B
Ruby
27 lines
828 B
Ruby
require 'formula'
|
|
|
|
class Fox < Formula
|
|
homepage 'http://www.fox-toolkit.org/'
|
|
url 'ftp://ftp.fox-toolkit.org/pub/fox-1.6.49.tar.gz'
|
|
sha1 '056a55ba7b4404af61d4256eafdf8fd0503c6fea'
|
|
|
|
# Development and stable branches are incompatible
|
|
devel do
|
|
url 'ftp://ftp.fox-toolkit.org/pub/fox-1.7.43.tar.gz'
|
|
sha1 '65a7aaa3971064e914c896c9b0a65c3549d773f5'
|
|
end
|
|
|
|
depends_on :x11
|
|
|
|
def install
|
|
# Yep, won't find freetype unless this is all set.
|
|
ENV.append "CFLAGS", "-I#{MacOS::X11.include}/freetype2"
|
|
ENV.append "CPPFLAGS", "-I#{MacOS::X11.include}/freetype2"
|
|
ENV.append "CXXFLAGS", "-I#{MacOS::X11.include}/freetype2"
|
|
|
|
system "./configure", "--enable-release",
|
|
"--prefix=#{prefix}",
|
|
"--with-x", "--with-opengl"
|
|
system "make install"
|
|
end
|
|
end
|