homebrew-core/Formula/wine.rb
2010-07-31 14:50:28 -07:00

42 lines
1.1 KiB
Ruby

require 'formula'
class Wine <Formula
url 'http://downloads.sourceforge.net/project/wine/Source/wine-1.2.tar.bz2'
sha1 'dc37a32edb274167990ca7820f92c2d85962e37d'
homepage 'http://www.winehq.org/'
head 'git://source.winehq.org/git/wine.git'
depends_on 'jpeg'
def install
fails_with_llvm
ENV.x11
# Build 32-bit; Wine doesn't support 64-bit host builds on OS X.
build32 = "-arch i386 -m32"
ENV["LIBS"] = "-lGL -lGLU"
ENV.append "CFLAGS", build32
ENV.append "CXXFLAGS", "-D_DARWIN_NO_64_BIT_INODE"
ENV.append "LDFLAGS", "#{build32} -framework CoreServices -lz -lGL -lGLU"
args = [ "--prefix=#{prefix}"]
args << "--without-freetype" if MACOS_VERSION >= 10.6 and Hardware.is_64_bit?
args << "--disable-win16" if MACOS_VERSION < 10.6
system "./configure", *args
system "make install"
# Don't need Gnome desktop support
rm_rf share+'applications'
end
def caveats; <<-EOS.undent
For a more full-featured install, try:
http://code.google.com/p/osxwinebuilder/
You may also want to get winetricks:
brew install winetricks
EOS
end
end