homebrew-core/Formula/esound.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

16 lines
550 B
Ruby

class Esound < Formula
desc "Enlightened sound daemon"
homepage "http://www.tux.org/~ricdude/EsounD.html"
url "http://ftp.gnome.org/pub/gnome/sources/esound/0.2/esound-0.2.41.tar.bz2"
sha256 "5eb5dd29a64b3462a29a5b20652aba7aa926742cef43577bf0796b787ca34911"
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