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>
master
Jonathan Wright 2010-01-03 13:14:09 +13:00 committed by Adam Vandenberg
parent c9affed5b8
commit 8326ac3af0
1 changed files with 14 additions and 0 deletions

14
Formula/mpc.rb Normal file
View File

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