1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name flawfinder |
---|
5 | version 1.22 |
---|
6 | categories devel |
---|
7 | maintainers waqar@opendarwin.org |
---|
8 | description Examines C/C++ source code for security flaw |
---|
9 | long_description Program that examines source code and reports possible \ |
---|
10 | security weaknesses (``flaws'') sorted by risk level. \ |
---|
11 | It's very useful for quickly finding and removing at \ |
---|
12 | least some potential security problems before a program \ |
---|
13 | is widely released to the public. |
---|
14 | homepage http://www.dwheeler.com/flawfinder/ |
---|
15 | platforms darwin |
---|
16 | master_sites http://www.dwheeler.com/${name}/ |
---|
17 | checksums md5 a6746b5e8b443e777ebd223edae33e6d |
---|
18 | configure {} |
---|
19 | build.cmd make |
---|
20 | build.target |
---|
21 | install.destroot |
---|
22 | |
---|
23 | install { system "cd ${worksrcpath} && install -o root -m 555 \ |
---|
24 | ${name} ${destroot}${prefix}/bin/" |
---|
25 | system "cd ${worksrcpath} && install -o root -m 444 \ |
---|
26 | ${name}.1 ${destroot}${prefix}/man/man1/" |
---|
27 | } |
---|