f043bfe785
This is a bug-fix release. 0.22 was broken due to missing Po files for i10n builds. Note that dependencies to other libraries have changed a bit: - libmpdclient >= 2.3 required - MPD >= 0.16 required Closes Homebrew/homebrew#30806. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
17 lines
467 B
Ruby
17 lines
467 B
Ruby
require 'formula'
|
|
|
|
class Ncmpc < Formula
|
|
homepage 'http://mpd.wikia.com/wiki/Client:Ncmpc'
|
|
url 'http://www.musicpd.org/download/ncmpc/0/ncmpc-0.23.tar.gz'
|
|
sha1 '801c9ff84ee091345dd6b33127c1c09e18dac01f'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
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
|