summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2013-05-29 14:51:24 +0200
committerAllan McRae <allan@archlinux.org>2013-05-30 05:11:02 +0200
commit477fd794a06d8f42c97e6ff1c251736b505d32a0 (patch)
tree8c7a0dffeda093f39118dbe2bcbcb1bf6c542de0 /scripts
parenta36d4b2831fdb36a0c8ddaec5a023104932df73d (diff)
downloadpacman-477fd794a06d8f42c97e6ff1c251736b505d32a0.tar.gz
pacman-477fd794a06d8f42c97e6ff1c251736b505d32a0.tar.xz
makepkg-template: add --version and some license info
Signed-off-by: Florian Pritz <bluewind@xinu.at> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/makepkg-template.pl.in34
1 files changed, 32 insertions, 2 deletions
diff --git a/scripts/makepkg-template.pl.in b/scripts/makepkg-template.pl.in
index 7e377991..567514e1 100755
--- a/scripts/makepkg-template.pl.in
+++ b/scripts/makepkg-template.pl.in
@@ -1,4 +1,22 @@
#!/usr/bin/perl
+# makepkg-template - template system for makepkg
+# @configure_input@
+#
+# Copyright (c) 2013 Pacman Development Team <pacman-dev@archlinux.org>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
use warnings;
use strict;
use v5.10.1;
@@ -158,14 +176,26 @@ sub usage {
print gettext(" (default: use version specified in the template markers)\n");
print gettext(" --template-dir <dir> directory to search for templates\n");
printf(gettext(" (default: %s)\n"), '@TEMPLATE_DIR@');
+ print gettext(" --help, -h This help message\n");
+ print gettext(" --version Version information\n");
print "\n";
exit($exitstatus);
}
+sub version {
+ my ($exitstatus) = @_;
+ printf "makepkg-template (pacman) %s\n", '@PACKAGE_VERSION@';
+ print gettext(
+ 'Copyright (c) 2013 Pacman Development Team <pacman-dev@archlinux.org>.'."\n".
+ 'This is free software; see the source for copying conditions.'."\n".
+ 'There is NO WARRANTY, to the extent permitted by law.'."\n");
+ exit($exitstatus);
+}
+
Getopt::Long::Configure ("bundling");
GetOptions(
- "help" => sub {usage(0); },
- "h" => sub {usage(0); },
+ "help|h" => sub {usage(0); },
+ "version" => sub {version(0); },
"input|p=s" => \$opts{input},
"output|o=s" => \$opts{output},
"newest|n" => \$opts{newest},