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

class Cclive <Formula
  url 'http://cclive.googlecode.com/files/cclive-0.6.5.tar.bz2'
  homepage 'http://code.google.com/p/cclive/'
  md5 'c3d50c05ca332b01286f9f3b6dd21841'

  depends_on 'pkg-config' => :build
  depends_on 'quvi'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make install"
  end
end