Started first draft of maemian.
[maemian] / maemian
1 #!/usr/bin/perl
2
3 # Copyright (C) Jeremiah C. Foster 2009, based on:
4
5 #   Lintian -- Debian package checker
6 # Copyright (C) 1998 Christian Schwarz and Richard Braakman
7
8 # This program is free software.  It is distributed under the terms of
9 # the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any
11 # later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program.  If not, you can find it on the World Wide
20 # Web at http://www.gnu.org/copyleft/gpl.html, or write to the Free
21 # Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
22 # MA 02110-1301, USA.
23
24 =head1 NAME
25
26 maemian - Maemo package checker
27
28 =head1 EXAMPLE
29
30 maemian -i file.dsc
31
32 =cut
33
34 use strict;
35 use warnings;
36 use Getopt::Long;
37 use Carp;
38
39 # --- Command line options
40 my $inputfile;             # --- A file passed to maemian 
41 GetOptions ("inputfile|i=s" => \$inputfile);
42
43 if ($inputfile && -x $inputfile) {
44   print "$inputfile\n";
45 } else {
46   croak "Have you specified an input file?\n $!\n";
47 }
48