eabfde05e7
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
49 lines
1.4 KiB
Ruby
49 lines
1.4 KiB
Ruby
require 'formula'
|
|
|
|
class Wine <Formula
|
|
url 'http://ibiblio.org/pub/linux/system/emulators/wine/wine-1.1.37.tar.bz2'
|
|
md5 'a9144360723c8276dffdbcea9c1028d5'
|
|
homepage 'http://www.winehq.org/'
|
|
head 'git://source.winehq.org/git/wine.git'
|
|
|
|
depends_on 'jpeg'
|
|
depends_on 'mpg123' => :optional
|
|
|
|
def wine_wrapper; <<-EOS
|
|
#!/bin/sh
|
|
DYLD_FALLBACK_LIBRARY_PATH="/usr/X11/lib" \
|
|
"#{bin}/wine.bin" "$@"
|
|
EOS
|
|
end
|
|
|
|
def install
|
|
# Wine does not compile with LLVM yet
|
|
ENV.gcc_4_2
|
|
ENV.x11
|
|
|
|
# Make sure we build 32bit version, because Wine64 is not fully functional yet
|
|
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"].join(' ')
|
|
ENV.append "DYLD_FALLBACK_LIBRARY_PATH", "/usr/X11/lib"
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--disable-win16"
|
|
system "make install"
|
|
|
|
# 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)
|
|
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
|
|
end
|