1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name build |
---|
6 | version 0.3.4 |
---|
7 | categories devel |
---|
8 | maintainers ieee.org:cardi openmaintainer |
---|
9 | description Massively-parallel software build system |
---|
10 | long_description ${description} implemented on top of GNU make. |
---|
11 | homepage http://kolpackov.net/projects/build/ |
---|
12 | platforms darwin |
---|
13 | master_sites ftp://kolpackov.net/pub/projects/build/0.3/ |
---|
14 | |
---|
15 | checksums md5 c23ce5bef88fff82a0e8afa995c6c00e \ |
---|
16 | sha1 55758f91fda8b8def42d76f19b7ed3209849be55 \ |
---|
17 | rmd160 6480d9530a92941b2704a20f60f953e079495a03 |
---|
18 | |
---|
19 | license GPLv2 |
---|
20 | |
---|
21 | use_bzip2 yes |
---|
22 | use_configure no |
---|
23 | |
---|
24 | destroot.args install_prefix=${prefix} |
---|
25 | |
---|
26 | build {} |
---|
27 | |
---|
28 | post-destroot { |
---|
29 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} |
---|
30 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}/documentation |
---|
31 | |
---|
32 | xinstall -m 644 -W ${worksrcpath} LICENSE README NEWS INSTALL \ |
---|
33 | ${destroot}${prefix}/share/doc/${name} |
---|
34 | |
---|
35 | eval xinstall -m 644 [glob ${worksrcpath}/documentation/*] \ |
---|
36 | ${destroot}${prefix}/share/doc/${name}/documentation |
---|
37 | |
---|
38 | move ${worksrcpath}/examples \ |
---|
39 | ${destroot}${prefix}/share/doc/${name}/ |
---|
40 | |
---|
41 | move ${worksrcpath}/tests \ |
---|
42 | ${destroot}${prefix}/share/doc/${name}/ |
---|
43 | } |
---|
44 | |
---|
45 | # vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|