homebrew-core/Formula/mpc.rb
Jonathan Wright 8326ac3af0 mpc 0.19 (and libmpdclient 2.1)
A minimalist command line interface to MPD (Music Player Daemon), a
flexible, powerful, server-side application for playing music.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-02-11 14:32:45 -08:00

14 lines
391 B
Ruby

require 'formula'
class Mpc <Formula
url 'http://downloads.sourceforge.net/project/musicpd/mpc/0.19/mpc-0.19.tar.bz2'
homepage 'http://mpd.wikia.com/wiki/Client:Mpc'
md5 '9ab2967d9ec719b06a86f3b4121be654'
depends_on 'libmpdclient'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end