2010-01-03 00:14:09 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Mpc < Formula
|
2011-01-10 17:36:10 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/musicpd/mpc/0.20/mpc-0.20.tar.bz2'
|
2010-01-03 00:14:09 +00:00
|
|
|
homepage 'http://mpd.wikia.com/wiki/Client:Mpc'
|
2011-01-10 17:36:10 +00:00
|
|
|
md5 '24c81ad6afe6099e8d7a6826ef4b7105'
|
2010-01-03 00:14:09 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-01-03 00:14:09 +00:00
|
|
|
depends_on 'libmpdclient'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|