Ticket #37807: Portfile

File Portfile, 1.0 KB (added by rod@…, 12 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
5PortGroup           github 1.0
6
7github.setup        rodnaph quids 1.0.0 v
8categories          devel shells
9platforms           darwin
10maintainers         pu-gh.com:rod
11license             MIT
12description         Allows downloading InfoQ videos
13long_description    Quids is a super-simple script to allow easy \
14                    downloading of videos from infoq.com from the \
15                    command line.
16
17checksums           rmd160  9c1185a5c5e9fc54612808977ee8f548b2258d31 \
18                    sha256  e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
19
20use_configure       no
21supported_archs     noarch
22
23build               {}
24
25destroot            {
26    xinstall -m 0755 ${worksrcpath}/quids \
27        ${destroot}${prefix}/bin/quids
28    xinstall -d ${destroot}${prefix}/share/doc/${name}
29    xinstall -m 0644 ${worksrcpath}/LICENSE \
30        ${destroot}${prefix}/share/doc/${name}
31}
32