abf1a1f516
sdl_sound contains critical fixes for OSX in head only. Requests have been made upstream for them to bump their version that has not changed since 2008. * Adds autotools deps when XCode is >= 4.3 and building head * Changes from bootstrap to autoreconf. Bootstrap hardcodes a path to /usr/bin/glibtoolize and uses a non-standard flag. * Use env vars to send the flags. Closes Homebrew/homebrew#10667. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
40 lines
1.2 KiB
Ruby
40 lines
1.2 KiB
Ruby
require 'formula'
|
|
|
|
class SdlSound < Formula
|
|
homepage 'http://icculus.org/SDL_sound/'
|
|
url 'http://icculus.org/SDL_sound/downloads/SDL_sound-1.0.3.tar.gz'
|
|
md5 'aa09cd52df85d29bee87a664424c94b5'
|
|
head 'http://hg.icculus.org/icculus/SDL_sound', :using => :hg
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'sdl'
|
|
depends_on 'flac' => :optional
|
|
depends_on 'libmikmod' => :optional
|
|
depends_on 'libogg' => :optional
|
|
depends_on 'libvorbis' => :optional
|
|
depends_on 'speex' => :optional
|
|
depends_on 'physfs' => :optional
|
|
|
|
if ARGV.build_head? and MacOS.xcode_version >= "4.3"
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
def install
|
|
if ARGV.build_head?
|
|
# Set the environment and call autoreconf, because boostrap.sh
|
|
# uses /usr/bin/glibtoolize and a non-standard flag to automake.
|
|
ENV['LIBTOOLIZE'] = 'glibtoolize'
|
|
ENV['ACLOCAL'] = "aclocal -I #{HOMEBREW_PREFIX}/share/aclocal"
|
|
ENV['AUTOMAKE'] = 'automake --foreign'
|
|
system "autoreconf -ivf"
|
|
end
|
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
"--disable-dependency-tracking",
|
|
"--disable-sdltest"
|
|
system "make"
|
|
system "make check"
|
|
system "make install"
|
|
end
|
|
end
|