homebrew-core/Formula/mpdscribble.rb
Carlos León fe82a9b48a mpdscribble 0.22
A Last.fm scrobbler for MPD.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-08-11 08:40:20 -07:00

20 lines
523 B
Ruby

require 'formula'
class Mpdscribble < Formula
url 'http://downloads.sourceforge.net/project/musicpd/mpdscribble/0.22/mpdscribble-0.22.tar.gz'
homepage 'http://mpd.wikia.com/wiki/Client:Mpdscribble'
md5 'df95ea5046511102bf1bcc35482d0365'
depends_on 'glib'
depends_on 'libmpdclient'
def install
system "./configure", "--prefix=#{prefix}", "--sysconfdir=#{etc}"
system "make install"
end
def caveats; <<-EOS.undent
The configuration file was placed in #{etc}/mpdscribble.conf
EOS
end
end