diff options
| author | Jonathan Wright | 2010-01-03 13:14:09 +1300 |
|---|---|---|
| committer | Adam Vandenberg | 2010-02-11 14:32:45 -0800 |
| commit | c6b5e88e77b97724d0c5042692ac9ecc88a7956f (patch) | |
| tree | 56ffc6c4edf8b866d481d692b27975caf02acbf3 /Library/Formula/mpc.rb | |
| parent | f158636075504524e24589446b1b335cb1301520 (diff) | |
| download | homebrew-c6b5e88e77b97724d0c5042692ac9ecc88a7956f.tar.bz2 | |
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>
Diffstat (limited to 'Library/Formula/mpc.rb')
| -rw-r--r-- | Library/Formula/mpc.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/mpc.rb b/Library/Formula/mpc.rb new file mode 100644 index 000000000..b36f9cb5a --- /dev/null +++ b/Library/Formula/mpc.rb @@ -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 |
