2010-04-10 13:51:55 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Cclive <Formula
|
2010-09-04 08:46:27 +00:00
|
|
|
url 'http://cclive.googlecode.com/files/cclive-0.6.5.tar.bz2'
|
2010-04-10 13:51:55 +00:00
|
|
|
homepage 'http://code.google.com/p/cclive/'
|
2010-09-04 08:46:27 +00:00
|
|
|
md5 'c3d50c05ca332b01286f9f3b6dd21841'
|
2010-04-10 13:51:55 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-04-10 13:51:55 +00:00
|
|
|
depends_on 'quvi'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
2010-05-30 09:46:41 +00:00
|
|
|
end
|