diff options
| author | nibbles 2bits | 2012-07-02 01:04:53 -0700 |
|---|---|---|
| committer | Jack Nagel | 2012-07-02 13:04:04 -0500 |
| commit | 882d5601adb08781fe4e2533b21fc60099a00698 (patch) | |
| tree | 537b314cc81eda27ac47db0a0721b11a20f07da0 /Library/Formula | |
| parent | 644278ea946ff30de82b94609b1d6a0c48b7fdab (diff) | |
| download | homebrew-882d5601adb08781fe4e2533b21fc60099a00698.tar.bz2 | |
sdl_gfx 2.0.23
Upgrade sdl_gfx to version 2.0.23.
Remove the `--enable-shared` because it is the default.
Remove the `--enable-static=no` because it's okay to build.
Remove the `--disable-mmx` because it no longer fails.
Tested both native and universal on Lion against clang and llvm
from XCode-4.3.3.
Closes #13159.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/sdl_gfx.rb | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Library/Formula/sdl_gfx.rb b/Library/Formula/sdl_gfx.rb index e247ba0d2..969a86401 100644 --- a/Library/Formula/sdl_gfx.rb +++ b/Library/Formula/sdl_gfx.rb @@ -1,9 +1,9 @@ require 'formula' class SdlGfx < Formula - url 'http://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-2.0.20.tar.gz' homepage 'http://www.ferzkopp.net/joomla/content/view/19/14/' - md5 '8a787e538a8e4d80d4927535be5af083' + url 'http://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-2.0.23.tar.gz' + sha1 'aae60e7fed539f3f8a0a0bd6da3bbcf625642596' depends_on 'sdl' @@ -15,10 +15,7 @@ class SdlGfx < Formula ENV.universal_binary if ARGV.build_universal? system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", - "--enable-static=no", - "--enable-shared=yes", - "--disable-sdltest", - "--disable-mmx" + "--disable-sdltest" system "make install" end end |
