blob: 52cb74d858f5b47da520fa6777648cfe5f200328 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
require 'formula'
class Mpc < Formula
  homepage 'http://mpd.wikia.com/wiki/Client:Mpc'
  url 'http://downloads.sourceforge.net/project/musicpd/mpc/0.22/mpc-0.22.tar.bz2'
  sha1 '62f541251f137f87f3a5dbdcaa171f8741b47f72'
  depends_on 'pkg-config' => :build
  depends_on 'libmpdclient'
  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end
  |