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: Portfile 104208 2013-03-20 17:08:02Z macsforever2000@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup github 1.0 |
---|
6 | |
---|
7 | epoch 2 |
---|
8 | github.setup cooljeanius macportsscripts 0.3.0 v |
---|
9 | categories sysutils macports |
---|
10 | platforms darwin |
---|
11 | maintainers phw gwmail.gwu.edu:egall openmaintainer |
---|
12 | license BSD |
---|
13 | supported_archs noarch |
---|
14 | |
---|
15 | description Various scripts to work with MacPorts |
---|
16 | |
---|
17 | long_description ${description} |
---|
18 | |
---|
19 | checksums rmd160 bfa65ac2a6da30474d76e6c89e1ad8425695173b \ |
---|
20 | sha256 b067846c2d4e5c122c51647a59ff9b1f93f2c9d4b3e32173e6d9a933cabbe4ea |
---|
21 | |
---|
22 | use_configure no |
---|
23 | build {} |
---|
24 | |
---|
25 | destroot { |
---|
26 | eval xinstall -m 755 [glob ${worksrcpath}/*.sh] ${destroot}${prefix}/bin |
---|
27 | eval xinstall -m 755 [glob ${worksrcpath}/*.pl] ${destroot}${prefix}/bin |
---|
28 | xinstall -d ${destroot}${prefix}/share/doc/${name} |
---|
29 | eval xinstall -m 644 [glob ${worksrcpath}/*.md] ${destroot}${prefix}/share/doc/${name} |
---|
30 | } |
---|