diff options
| author | David Höppner | 2010-01-31 15:30:00 +0100 |
|---|---|---|
| committer | David Höppner | 2010-01-31 15:30:00 +0100 |
| commit | 46f6ed4631773127b9bf2e2f7cc6ddc4e4f44c3b (patch) | |
| tree | d12386f4cf7941458300eeccf355849909f20f4b /Library/Formula | |
| parent | ae4169a79af0f0eb0311407aa4fe8e08a71755fd (diff) | |
| download | homebrew-46f6ed4631773127b9bf2e2f7cc6ddc4e4f44c3b.tar.bz2 | |
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.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/ncmpc.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/ncmpc.rb b/Library/Formula/ncmpc.rb new file mode 100644 index 000000000..07603befc --- /dev/null +++ b/Library/Formula/ncmpc.rb @@ -0,0 +1,17 @@ +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 |
