2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-04 13:48:56 +00:00
|
|
|
|
|
|
|
class Wine <Formula
|
2010-07-31 21:50:28 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/wine/Source/wine-1.2.tar.bz2'
|
|
|
|
sha1 'dc37a32edb274167990ca7820f92c2d85962e37d'
|
2009-10-04 13:48:56 +00:00
|
|
|
homepage 'http://www.winehq.org/'
|
2010-01-10 09:13:49 +00:00
|
|
|
head 'git://source.winehq.org/git/wine.git'
|
2009-10-10 11:36:36 +00:00
|
|
|
|
2009-10-04 13:48:56 +00:00
|
|
|
depends_on 'jpeg'
|
2010-03-25 17:45:32 +00:00
|
|
|
|
2009-10-04 13:48:56 +00:00
|
|
|
def install
|
2010-06-16 18:50:36 +00:00
|
|
|
fails_with_llvm
|
2009-10-04 13:48:56 +00:00
|
|
|
ENV.x11
|
|
|
|
|
2010-06-21 16:56:22 +00:00
|
|
|
# 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"
|
2010-06-21 16:56:22 +00:00
|
|
|
ENV.append "LDFLAGS", "#{build32} -framework CoreServices -lz -lGL -lGLU"
|
|
|
|
|
2010-07-31 21:50:28 +00:00
|
|
|
args = [ "--prefix=#{prefix}"]
|
|
|
|
args << "--without-freetype" if MACOS_VERSION >= 10.6 and Hardware.is_64_bit?
|
|
|
|
args << "--disable-win16" if MACOS_VERSION < 10.6
|
2010-06-21 16:56:22 +00:00
|
|
|
|
|
|
|
system "./configure", *args
|
2009-10-04 13:48:56 +00:00
|
|
|
system "make install"
|
2010-03-25 17:45:32 +00:00
|
|
|
|
2010-06-21 16:56:22 +00:00
|
|
|
# Don't need Gnome desktop support
|
|
|
|
rm_rf share+'applications'
|
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
|
2009-10-04 13:48:56 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|