homebrew-core/Formula/wine.rb

75 lines
2.2 KiB
Ruby
Raw Normal View History

require 'formula'
2009-10-04 13:48:56 +00:00
class Wine <Formula
if ARGV.flag? '--devel'
url 'http://downloads.sourceforge.net/project/wine/Source/wine-1.3.13.tar.bz2'
sha1 'f7e7aa2dbefc0f3fd48703f8640d13bcdb7312e4'
else
url 'http://downloads.sourceforge.net/project/wine/Source/wine-1.2.2.tar.bz2'
sha1 '8b37c8e0230dd6a665d310054f4e36dcbdab7330'
end
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 'libicns'
depends_on 'gnutls'
# the following libraries are currently not specified as dependencies, or not built as 32-bit:
# configure: libsane, libv4l, libgphoto2, liblcms, gstreamer-0.10, libcapi20, libgsm, libtiff
2010-03-25 17:45:32 +00:00
# Wine loads many libraries lazily using dlopen calls, so it needs these paths
# to be searched by dyld.
def wine_wrapper; <<-EOS
#!/bin/sh
2011-02-12 16:49:20 +00:00
DYLD_FALLBACK_LIBRARY_PATH="/usr/X11/lib:#{HOMEBREW_PREFIX}/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"
args = ["--prefix=#{prefix}",
"--x-include=/usr/X11/include/",
"--x-lib=/usr/X11/lib/",
"--with-x",
"--with-coreaudio",
"--with-opengl"]
2010-07-31 21:50:28 +00:00
args << "--disable-win16" if MACOS_VERSION < 10.6
# 64-bit builds of mpg123 are incompatible with 32-bit builds of Wine
2011-02-12 16:49:20 +00:00
args << "--without-mpg123" if Hardware.is_64_bit?
2010-08-10 14:42:05 +00:00
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'
# 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
2010-07-31 21:50:28 +00:00
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
2010-10-22 04:00:22 +00:00
To use 3D applications, like games, check "Emulate a virtual desktop" in
winecfg's "Graphics" tab.
2009-10-04 13:48:56 +00:00
EOS
end
end