Gnome Enlightened Sound daemon 0.2.41

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Max Klinger 2010-11-09 11:32:07 +01:00 committed by Adam Vandenberg
parent 4b0e8b041b
commit b94ac1c132
1 changed files with 17 additions and 0 deletions

17
Formula/esound.rb Normal file
View File

@ -0,0 +1,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