aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/esound.rb
blob: 3da345470287700c2f8306124dd69649c42c1c56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Esound < Formula
  url 'http://ftp.gnome.org/pub/gnome/sources/esound/0.2/esound-0.2.41.tar.bz2'
  homepage 'http://www.tux.org/~ricdude/EsounD.html'
  md5 '8d9aad3d94d15e0d59ba9dc0ea990c6c'

  depends_on 'pkg-config' => :build
  depends_on 'audiofile'

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