New formula quvi

quvi is a command line tool for parsing video download links. It supports
Youtube and other similar video websites.
This commit is contained in:
David Höppner 2010-04-10 15:44:20 +02:00
parent 6e30c45bd7
commit 339f9a1024

19
Formula/quvi.rb Normal file
View file

@ -0,0 +1,19 @@
require 'formula'
class Quvi <Formula
url 'http://quvi.googlecode.com/files/quvi-0.1.4.tar.bz2'
homepage 'http://code.google.com/p/quvi/'
md5 '976c07dcf3cab275c93f7b5bc3424b02'
depends_on 'pkg-config'
depends_on 'pcre'
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-smut",
"--enable-broken"
system "make install"
end
end