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 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup github 1.0 |
---|
6 | |
---|
7 | github.setup rodnaph quids 1.0.0 v |
---|
8 | categories devel shells |
---|
9 | platforms darwin |
---|
10 | maintainers pu-gh.com:rod |
---|
11 | license MIT |
---|
12 | description Allows downloading InfoQ videos |
---|
13 | long_description Quids is a super-simple script to allow easy \ |
---|
14 | downloading of videos from infoq.com from the \ |
---|
15 | command line. |
---|
16 | |
---|
17 | checksums rmd160 9c1185a5c5e9fc54612808977ee8f548b2258d31 \ |
---|
18 | sha256 e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 |
---|
19 | |
---|
20 | use_configure no |
---|
21 | supported_archs noarch |
---|
22 | |
---|
23 | build {} |
---|
24 | |
---|
25 | destroot { |
---|
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 | |
---|