aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ncmpc.rb
blob: aa2e6a581bba4adccf5b7adb912ce5df643a584d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Ncmpc < Formula
  url 'http://downloads.sourceforge.net/musicpd/ncmpc-0.19.tar.bz2'
  homepage 'http://mpd.wikia.com/wiki/Client:Ncmpc'
  md5 'd298ad1313ef3a522ef03367f8a1ffc0'

  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