homebrew-core/Formula/ncmpc.rb
David Höppner 1809283150 New formula ncmpc
Ncmpc is a fully featured MPD client, which runs in a terminal (using ncurses).
Its goal is to provide a keyboard oriented and consistent interface to MPD,
without wasting resources.
2010-01-31 15:30:00 +01:00

17 lines
472 B
Ruby

require 'formula'
class Ncmpc <Formula
url 'http://downloads.sourceforge.net/project/musicpd/ncmpc/0.16.1/ncmpc-0.16.1.tar.bz2'
homepage 'http://mpd.wikia.com/wiki/Client:Ncmpc'
md5 'f3e53a379bd0bc82d315aa111bfdd17a'
depends_on 'pkg-config'
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