homebrew-core/Formula/cclive.rb
Victor Martinez 8dc451e3e2 Fixed several broken sourceforge.net download locations
Closes Homebrew/homebrew#20645.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-30 12:17:57 -07:00

19 lines
500 B
Ruby

require 'formula'
class Cclive < Formula
homepage 'http://cclive.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/cclive/0.7/cclive-0.7.13.tar.xz'
sha1 '008ebd2e8a92e1ba07f11e7467dac48fe4acc0d4'
depends_on 'pkg-config' => :build
depends_on 'xz' => :build
depends_on 'quvi'
depends_on 'boost'
depends_on 'pcre'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end