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 | |
---|
6 | name cppcheck |
---|
7 | version 1.45 |
---|
8 | categories devel |
---|
9 | platforms darwin |
---|
10 | maintainers johnsy.com:paj-macports |
---|
11 | |
---|
12 | description Static analysis of C and C++ code. Checks for memory leaks, \ |
---|
13 | mismatching allocation-deallocations, buffer overruns, and \ |
---|
14 | many more. The goal is 0% false positives. |
---|
15 | |
---|
16 | long_description Cppcheck is an analysis tool for C and C++ code. Unlike \ |
---|
17 | compilers and many other analysis tools, we don't detect \ |
---|
18 | syntax errors. Cppcheck only detects the types of bugs that \ |
---|
19 | the compilers normally fail to detect. The goal is no false \ |
---|
20 | positives. |
---|
21 | |
---|
22 | homepage http://cppcheck.sourceforge.net/ |
---|
23 | master_sites sourceforge |
---|
24 | checksums md5 1d2661fc2570331a7c9c4188a356d6f7 \ |
---|
25 | sha1 3f9dc771f44a01b7d0465d13875fcd5d8b25c7d2 \ |
---|
26 | rmd160 de1a2c525582e9ce354c3b1c4d2577727d93c332 |
---|
27 | |
---|
28 | license GPLv3 |
---|
29 | |
---|
30 | destroot.args PREFIX=${prefix} |
---|
31 | |
---|
32 | use_configure no |
---|
33 | |
---|
34 | test.run yes |
---|
35 | test.target test |
---|