2011-03-10 05:11:03 +00:00
|
|
|
class Cclive < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Command-line video extraction utility"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "http://cclive.sourceforge.net/"
|
|
|
|
url "https://downloads.sourceforge.net/project/cclive/0.7/cclive-0.7.16.tar.xz"
|
|
|
|
sha256 "586a120faddcfa16f5bb058b5c901f1659336c6fc85a0d3f1538882a44ee10e1"
|
2010-04-10 13:51:55 +00:00
|
|
|
|
2015-08-03 12:55:31 +00:00
|
|
|
conflicts_with "clozure-cl", :because => "both install a ccl binary"
|
2013-11-06 15:31:27 +00:00
|
|
|
|
2015-08-03 12:55:31 +00:00
|
|
|
depends_on "pkg-config" => :build
|
|
|
|
depends_on "quvi"
|
|
|
|
depends_on "boost"
|
|
|
|
depends_on "pcre"
|
2011-11-26 07:36:52 +00:00
|
|
|
|
2010-04-10 13:51:55 +00:00
|
|
|
def install
|
2011-11-26 07:36:52 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2015-08-03 12:55:31 +00:00
|
|
|
system "make", "install"
|
2010-04-10 13:51:55 +00:00
|
|
|
end
|
2010-05-30 09:46:41 +00:00
|
|
|
end
|