]> ruderich.org/simon Gitweb - blhc/blhc.git/blob - bin/blhc
c4aefd29ad15d50efe165112eb0d72359baa88a6
[blhc/blhc.git] / bin / blhc
1 #!/usr/bin/perl
2
3 # Build log hardening check, checks build logs for missing hardening flags.
4
5 # Copyright (C) 2012  Simon Ruderich
6 #
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20
21 use strict;
22 use warnings;
23
24 use Getopt::Long ();
25
26 our $VERSION = '0.01';
27
28
29 # Parse command line arguments.
30 my $option_help    = 0;
31 my $option_version = 0;
32 if (not Getopt::Long::GetOptions(
33             'help|h|?' => \$option_help,
34             'version'  => \$option_version,
35         )) {
36     require Pod::Usage;
37     Pod::Usage::pod2usage(2);
38 }
39 if ($option_help) {
40     require Pod::Usage;
41     Pod::Usage::pod2usage(1);
42 }
43 if ($option_version) {
44     print "blhc $VERSION  Copyright (C) 2012  Simon Ruderich
45
46 This program is free software: you can redistribute it and/or modify
47 it under the terms of the GNU General Public License as published by
48 the Free Software Foundation, either version 3 of the License, or
49 (at your option) any later version.
50
51 This program is distributed in the hope that it will be useful,
52 but WITHOUT ANY WARRANTY; without even the implied warranty of
53 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
54 GNU General Public License for more details.
55
56 You should have received a copy of the GNU General Public License
57 along with this program.  If not, see <http://www.gnu.org/licenses/>.
58 ";
59     exit 0;
60 }
61
62
63 __END__
64
65 =head1 NAME
66
67 blhc - build log hardening check, checks build logs for missing hardening flags
68
69 =head1 SYNOPSIS
70
71 B<blhc> [-h -? --help]
72
73     --help                  available options
74     --version               version number and license
75
76 =head1 DESCRIPTION
77
78 blhc is a small tool which checks build logs for missing hardening flags and
79 other important warnings. It's licensed under the GPL 3 or later.
80
81 =head1 OPTIONS
82
83 =over 8
84
85 =item B<-h -? --help>
86
87 Print available options.
88
89 =item B<--version>
90
91 Print version number and license.
92
93 =back
94
95 =head1 AUTHOR
96
97 Simon Ruderich, E<lt>simon@ruderich.orgE<gt>
98
99 =head1 COPYRIGHT AND LICENSE
100
101 Copyright (C) 2012 by Simon Ruderich
102
103 This program is free software: you can redistribute it and/or modify
104 it under the terms of the GNU General Public License as published by
105 the Free Software Foundation, either version 3 of the License, or
106 (at your option) any later version.
107
108 This program is distributed in the hope that it will be useful,
109 but WITHOUT ANY WARRANTY; without even the implied warranty of
110 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
111 GNU General Public License for more details.
112
113 You should have received a copy of the GNU General Public License
114 along with this program.  If not, see <http://www.gnu.org/licenses/>.
115
116 =cut