blob: 06f055831eb60eaebe76fed1158b4cd13f615209 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
 | 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'
  sha1 '1984bc20b2c756dc71107a5a0a8cebfe07e58cb1'
  head do
    url 'http://hg.icculus.org/icculus/SDL_sound', :using => :hg
    depends_on "autoconf" => :build
    depends_on "automake" => :build
    depends_on "libtool" => :build
  end
  option :universal
  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
  def install
    ENV.universal_binary if build.universal?
    if build.head?
      inreplace "bootstrap", "/usr/bin/glibtoolize",
        "#{Formula["libtool"].opt_bin}/glibtoolize"
      system "./bootstrap"
    end
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--disable-sdltest"
    system "make"
    system "make check"
    system "make install"
  end
end
 |