sdl_sound

master
Adam Vandenberg 2010-03-09 23:25:36 -08:00
parent 4fd634a9c3
commit 3188edb13c
1 changed files with 21 additions and 0 deletions

21
Formula/sdl_sound.rb Normal file
View File

@ -0,0 +1,21 @@
require 'formula'
class SdlSound <Formula
url 'http://icculus.org/SDL_sound/downloads/SDL_sound-1.0.3.tar.gz'
homepage 'http://icculus.org/SDL_sound/'
md5 'aa09cd52df85d29bee87a664424c94b5'
depends_on 'pkg-config'
depends_on 'sdl'
depends_on 'flac' => :optional
depends_on 'libmikmod' => :optional
depends_on 'libogg' => :optional
depends_on 'libvorbis' => :optional
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-sdltest"
system "make install"
end
end