homebrew-core/Formula/wine.rb

56 lines
1.5 KiB
Ruby
Raw Normal View History

require 'formula'
2009-10-04 13:48:56 +00:00
class Wine <Formula
url 'http://ibiblio.org/pub/linux/system/emulators/wine/wine-1.1.31.tar.bz2'
md5 '87fb94c218e52dd67c75b4ae5ef50c0e'
2009-10-04 13:48:56 +00:00
homepage 'http://www.winehq.org/'
2009-10-04 13:48:56 +00:00
depends_on 'jpeg'
depends_on 'mpg123' => :optional
2009-10-04 13:48:56 +00:00
def install
# Wine does not compile with LLVM yet
ENV.gcc_4_2
2009-10-04 13:48:56 +00:00
ENV.x11
# Make sure we build 32bit version, because Wine64 is not fully functional yet
2009-10-04 13:48:56 +00:00
build32 = "-arch i386 -m32"
ENV["LIBS"] = "-lGL -lGLU"
ENV["CFLAGS"] = [ENV["CFLAGS"], build32].join(' ')
ENV["CXXFLAGS"] = [ENV["CFLAGS"], "-D_DARWIN_NO_64_BIT_INODE"].join(' ')
ENV["LDFLAGS"] = [ENV["LDFLAGS"], build32, "-framework CoreServices", "-lz", "-lGL -lGLU"].join(' ')
ENV["DYLD_FALLBACK_LIBRARY_PATH"] = [ENV["DYLD_FALLBACK_LIBRARY_PATH"], "/usr/X11/lib"].join(' ')
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--disable-win16"
system "make install"
rename_binary
install_wrapper
end
def caveats; <<-EOS
Get winetricks with:
wget http://www.kegel.com/wine/winetricks > #{prefix}/bin/winetricks
chmod +x #{prefix}/bin/winetricks
brew link wine
EOS
end
def wine_wrapper
DATA
end
2009-10-04 13:48:56 +00:00
def rename_binary
(bin+'wine').rename(bin+'wine.bin')
end
def install_wrapper
(bin+'wine').write(wine_wrapper.read.gsub('@PREFIX@', prefix))
end
end
__END__
#!/bin/sh
DYLD_FALLBACK_LIBRARY_PATH="/usr/X11/lib" \
"@PREFIX@/bin/wine.bin" "$@"