diff options
| author | David Höppner | 2010-04-10 15:51:55 +0200 |
|---|---|---|
| committer | David Höppner | 2010-04-10 15:51:55 +0200 |
| commit | 4578491fab6c2bc37bd7de5cf7e4bc0d1eaba60b (patch) | |
| tree | e1b5a6dbd02a1870d873c67c6381fe71772a28e5 /Library | |
| parent | 434ab60ad00c6ba05e6c503d3813128adf23312f (diff) | |
| download | homebrew-4578491fab6c2bc37bd7de5cf7e4bc0d1eaba60b.tar.bz2 | |
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.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/cclive.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/cclive.rb b/Library/Formula/cclive.rb new file mode 100644 index 000000000..7c682babf --- /dev/null +++ b/Library/Formula/cclive.rb @@ -0,0 +1,15 @@ +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
\ No newline at end of file |
