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:
parent
6e30c45bd7
commit
339f9a1024
1 changed files with 19 additions and 0 deletions
19
Formula/quvi.rb
Normal file
19
Formula/quvi.rb
Normal 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
|
Loading…
Reference in a new issue