From f1ad308f5f6d0a4452f24ebb724d0166e4e92aa6 Mon Sep 17 00:00:00 2001 From: Henrik Nilsson Date: Tue, 15 Dec 2009 09:03:15 +0100 Subject: [PATCH] Added a installation script for the cppcheck-htmlreport utility. The script uses distutils to install the script into /usr/bin/. The following will install the script: sudo ./setup.py install --- htmlreport/setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 htmlreport/setup.py diff --git a/htmlreport/setup.py b/htmlreport/setup.py new file mode 100755 index 000000000..855554988 --- /dev/null +++ b/htmlreport/setup.py @@ -0,0 +1,10 @@ +#!/usr/bin/python +from distutils.core import setup + +if __name__ == '__main__': + setup( + name="cppcheck", + scripts=[ + "cppcheck-htmlreport", + ] + )