blob: 584f004a2b24fbc3a822838299265989be587563 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require 'formula'
class Cclive < Formula
homepage 'http://cclive.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/cclive/0.7/cclive-0.7.14.tar.xz'
sha1 '2e4dafd7266095610a2154117a15682e5987ed89'
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
|