2010-01-31 14:30:00 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Ncmpc < Formula
|
2011-08-15 06:09:21 +00:00
|
|
|
url 'http://downloads.sourceforge.net/musicpd/ncmpc-0.19.tar.bz2'
|
2010-01-31 14:30:00 +00:00
|
|
|
homepage 'http://mpd.wikia.com/wiki/Client:Ncmpc'
|
2011-08-15 06:09:21 +00:00
|
|
|
md5 'd298ad1313ef3a522ef03367f8a1ffc0'
|
2010-01-31 14:30:00 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-01-31 14:30:00 +00:00
|
|
|
depends_on 'gettext'
|
|
|
|
depends_on 'glib'
|
|
|
|
depends_on 'libmpdclient'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|