homebrew-core/Formula/wine.rb

56 lines
1.4 KiB
Ruby
Raw Normal View History

require 'formula'
2009-10-04 13:48:56 +00:00
class Wine <Formula
url 'http://downloads.sourceforge.net/project/wine/Source/wine-1.1.44.tar.bz2'
sha1 '60f11693161b28ff9814949f2b6bbccee1d07a2c'
2009-10-04 13:48:56 +00:00
homepage 'http://www.winehq.org/'
head 'git://source.winehq.org/git/wine.git'
2009-10-04 13:48:56 +00:00
depends_on 'jpeg'
depends_on 'mpg123' => :optional
2009-10-04 13:48:56 +00:00
2010-03-25 17:45:32 +00:00
def wine_wrapper; <<-EOS
#!/bin/sh
DYLD_FALLBACK_LIBRARY_PATH="/usr/X11/lib" \
"#{bin}/wine.bin" "$@"
EOS
end
2009-10-04 13:48:56 +00:00
def install
fails_with_llvm
2009-10-04 13:48:56 +00:00
ENV.x11
# Build 32-bit; Wine doesn't support 64-bit host builds on OS X.
2009-10-04 13:48:56 +00:00
build32 = "-arch i386 -m32"
ENV["LIBS"] = "-lGL -lGLU"
2009-11-16 18:41:26 +00:00
ENV.append "CFLAGS", build32
ENV.append "CXXFLAGS", "-D_DARWIN_NO_64_BIT_INODE"
ENV.append "LDFLAGS", "#{build32} -framework CoreServices -lz -lGL -lGLU"
2009-11-16 18:41:26 +00:00
ENV.append "DYLD_FALLBACK_LIBRARY_PATH", "/usr/X11/lib"
2009-10-04 13:48:56 +00:00
args = [ "--prefix=#{prefix}", "--disable-win16" ]
# Building a universal mpg123 is non-trivial, so skip for now.
args << "--without-mpg123" if Hardware.is_64_bit? and MACOS_VERSION >= 10.6
system "./configure", *args
2009-10-04 13:48:56 +00:00
system "make install"
2010-03-25 17:45:32 +00:00
# Don't need Gnome desktop support
rm_rf share+'applications'
2010-03-25 17:45:32 +00:00
# Use a wrapper script, so rename wine to wine.bin
# and name our startup script wine
mv (bin+'wine'), (bin+'wine.bin')
(bin+'wine').write(wine_wrapper)
2009-10-04 13:48:56 +00:00
end
def caveats
<<-EOS.undent
You may also want to get winetricks:
brew install winetricks
2009-10-04 13:48:56 +00:00
EOS
end
end