aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sdl_mixer.rb
blob: 8d9e020e36574fcb13e8167bd0856976003dbbca (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
require 'formula'

class SdlMixer < Formula
  homepage 'http://www.libsdl.org/projects/SDL_mixer/'
  url 'http://www.libsdl.org/projects/SDL_mixer/release/SDL_mixer-1.2.12.tar.gz'
  sha1 'a20fa96470ad9e1052f1957b77ffa68fb090b384'

  bottle do
    cellar :any
    sha1 "1ad2648cd71bd7f13eae35cdcb6c89573908bd24" => :mavericks
    sha1 "980edb62430840facb54ab8cd065eea576fba9c5" => :mountain_lion
    sha1 "5ba6a1d7bc5dc2a8b032ce45e779b7cbd8d91d42" => :lion
  end

  option :universal

  depends_on 'pkg-config' => :build
  depends_on 'sdl'
  depends_on 'flac' => :optional
  depends_on 'libmikmod' => :optional
  depends_on 'libvorbis' => :optional

  def install
    inreplace 'SDL_mixer.pc.in', '@prefix@', HOMEBREW_PREFIX

    ENV.universal_binary if build.universal?

    system "./configure", "--prefix=#{prefix}",
                          "--disable-dependency-tracking"
    system "make install"
  end
end