diff options
author | Alex Sassmannshausen <alex.sassmannshausen@gmail.com> | 2016-11-02 13:55:02 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2016-11-02 14:23:24 +0000 |
commit | e681e347c4ed071db88442c2c592241ea0f43857 (patch) | |
tree | 3acecad91554bbb937de2e4791a8df22bebd5836 | |
parent | cbf5889fe542dafe71c6eedf9cc72673495fcc88 (diff) | |
download | guix-e681e347c4ed071db88442c2c592241ea0f43857.tar guix-e681e347c4ed071db88442c2c592241ea0f43857.tar.gz |
gnu: Add perl-getopt-long.
* gnu/packages/perl.scm (perl-getopt-long): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com>
-rw-r--r-- | gnu/packages/perl.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 6b12b346bf..6b3d0a7868 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -2685,6 +2685,34 @@ functionality; it returns a list of file names that match the given pattern. For instance, it supports the @code{**/*.pm} form.") (license (package-license perl)))) +(define-public perl-getopt-long + (package + (name "perl-getopt-long") + (version "v2.49.1") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/J/JV/JV/" + "Getopt-Long-" (substring version 1) ".tar.gz")) + (sha256 + (base32 + "0bw8gbhj8s5gmkqvs3m7pk9arqhgqssrby4yimh29ah9alix9ylq")))) + (build-system perl-build-system) + (home-page "http://search.cpan.org/dist/Getopt-Long") + (synopsis "Module to handle parsing command line options") + (description "The @code{Getopt::Long} module implements an extended getopt +function called @code{GetOptions()}. It parses the command line from +@code{ARGV}, recognizing and removing specified options and their possible +values. + +This function adheres to the POSIX syntax for command line options, with GNU +extensions. In general, this means that options have long names instead of +single letters, and are introduced with a double dash \"--\". Support for +bundling of command line options, as was the case with the more traditional +single-letter approach, is provided but not enabled by default.") + ;; Can be used with either license. + (license (list (package-license perl) gpl2+)))) + (define-public perl-getopt-long-descriptive (package (name "perl-getopt-long-descriptive") |