Ticket #18709: Portfile

File Portfile, 1.0 KB (added by juno@…, 15 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2# $Id: $
3
4PortSystem 1.0
5
6name                cclive
7version             0.2.3
8revision            1
9categories          net www
10maintainers         nomaintainer
11description         a command line video extraction utility.
12long_description    cclive is a command line video extraction utility similar \
13                    to clive but with lower requirements
14homepage            http://code.google.com/p/cclive/
15platforms           darwin
16master_sites        googlecode
17use_bzip2           yes
18
19checksums           md5 340a3270080efdac4f6e67d1c1503247 \
20                    sha1 932edfd9eb6855bea554b7a53cc0603d47ffb719 \
21                    rmd160 bdce60196eced382122c759d1858f58bca61da2e
22
23configure {}
24build {
25    system "cd ${worksrcpath} && make"
26}
27destroot {
28    xinstall -m 755 ${worksrcpath}/cclive ${destroot}${prefix}/bin
29    xinstall -m 755 ${worksrcpath}/cclive.1 ${destroot}${prefix}/share/man/man1
30}