homebrew-core/Formula/cclive.rb
David Höppner 8382a0a5d9 New formula cclive
cclive is a lightweight commandline video extraction tool for Youtube and
similar video Websites. It is a rewrite of the clive software in C++ with
a smaller system footprint and fewer dependencies.
2010-04-10 15:51:55 +02:00

15 lines
No EOL
388 B
Ruby

require 'formula'
class Cclive <Formula
url 'http://cclive.googlecode.com/files/cclive-0.6.2.tar.bz2'
homepage 'http://code.google.com/p/cclive/'
md5 '14b90b281191421c9b109c7b231718a5'
depends_on 'pkg-config'
depends_on 'quvi'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end