gnu: ruby-pandoc-ruby: Use pandoc instead of ghc-pandoc.
[jackhill/guix/guix.git] / gnu / packages / popt.scm
CommitLineData
df77a462 1;;; GNU Guix --- Functional package management for GNU
02dad49d 2;;; Copyright © 2013, 2014, 2016, 2019 Ludovic Courtès <ludo@gnu.org>
ba6a996e 3;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net>
7f5c74d1 4;;; Copyright © 2017, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
df77a462
LC
5;;;
6;;; This file is part of GNU Guix.
7;;;
8;;; GNU Guix is free software; you can redistribute it and/or modify it
9;;; under the terms of the GNU General Public License as published by
10;;; the Free Software Foundation; either version 3 of the License, or (at
11;;; your option) any later version.
12;;;
13;;; GNU Guix is distributed in the hope that it will be useful, but
14;;; 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 GNU Guix. If not, see <http://www.gnu.org/licenses/>.
20
21(define-module (gnu packages popt)
22 #:use-module (guix packages)
23 #:use-module (guix download)
400457af 24 #:use-module (guix git-download)
df77a462 25 #:use-module (guix build-system gnu)
4b4e1b4b 26 #:use-module (guix build-system cmake)
02dad49d
LC
27 #:use-module (guix licenses)
28 #:use-module (gnu packages texinfo))
df77a462 29
9495e736
RW
30(define-public argtable
31 (package
32 (name "argtable")
33 (version "2.13")
34 (source (origin
35 (method url-fetch)
36 (uri (string-append
de67e922
LF
37 "mirror://sourceforge/argtable/argtable/"
38 "argtable-" version "/argtable"
9495e736
RW
39 (string-join (string-split version #\.) "-")
40 ".tar.gz"))
41 (sha256
42 (base32
43 "1gyxf4bh9jp5gb3l6g5qy90zzcf3vcpk0irgwbv1lc6mrskyhxwg"))))
44 (build-system gnu-build-system)
45 (home-page "http://argtable.sourceforge.net/")
46 (synopsis "Command line option parsing library")
47 (description
48 "Argtable is an ANSI C library for parsing GNU style command line
49options. It enables a program's command line syntax to be defined in the
50source code as an array of argtable structs. The command line is then parsed
51according to that specification and the resulting values are returned in those
52same structs where they are accessible to the main program. Both tagged (-v,
53--verbose, --foo=bar) and untagged arguments are supported, as are multiple
54instances of each argument. Syntax error handling is automatic and the library
55also provides the means for generating a textual description of the command
56line syntax.")
57 (license lgpl2.0+)))
58
df77a462
LC
59(define-public popt
60 (package
61 (name "popt")
62 (version "1.16")
63 (source (origin
64 (method url-fetch)
91c8b23e
MB
65 ;; The original rpm5.org domain is not accessible since
66 ;; 2019-06-13, so use Debians copy of the tarball.
67 (uri (string-append "https://deb.debian.org/debian/pool/main"
68 "/p/popt/popt_" version ".orig.tar.gz"))
69 ;; Ensure the file name stays the same to prevent rebuilds.
981bd6e6 70 (file-name (string-append "popt-" version ".tar.gz"))
df77a462
LC
71 (sha256
72 (base32
73 "1j2c61nn2n351nhj4d25mnf3vpiddcykq005w2h6kw79dwlysa77"))))
74 (build-system gnu-build-system)
75 (arguments
dc1d3cde
KK
76 '(#:phases
77 (modify-phases %standard-phases
78 (add-before 'configure 'patch-test
79 (lambda _
80 (substitute* "test-poptrc.in"
81 (("/bin/echo") (which "echo")))
82 (substitute* "testit.sh" ; don't expect old libtool names
83 (("lt-test1") "test1"))
84 #t)))))
07af3e5e 85 (home-page "http://rpm5.org/files/popt/")
df77a462
LC
86 (synopsis "Command line option parsing library")
87 (description
88 "This is the popt(3) command line option parsing library. While it is
89similar to getopt(3), it contains a number of enhancements, including:
90
91 - popt is fully reentrant;
92
93 - popt can parse arbitrary argv[] style arrays while getopt(3) makes this
94 quite difficult;
95
96 - popt allows users to alias command line arguments;
97
98 - popt provides convience functions for parsing strings into argv[] style
99 arrays.")
100 (license x11)))
4b4e1b4b
LC
101
102(define-public gflags
103 (package
104 (name "gflags")
7f5c74d1 105 (version "2.2.2")
400457af
TGR
106 (source
107 (origin
108 (method git-fetch)
109 (uri (git-reference
b0e7b699 110 (url "https://github.com/gflags/gflags")
400457af
TGR
111 (commit (string-append "v" version))))
112 (sha256
113 (base32 "147i3md3nxkjlrccqg4mq1kyzc7yrhvqv5902iibc7znkvzdvlp0"))
114 (file-name (git-file-name name version))))
4b4e1b4b
LC
115 (build-system cmake-build-system)
116 (arguments
117 '(#:configure-flags '("-DBUILD_SHARED_LIBS=ON"
118 "-DBUILD_TESTING=ON")))
119 (home-page "https://gflags.github.io/gflags/")
120 (synopsis "C++ library for command-line argument parsing")
121 (description
122 "Gflags is a C++ library to parse command-line flags. It differs from
123other such libraries in that command-line flag definitions can be scattered
124around the source code, and not just listed in one place such as @code{main}.
125This means that a single source-code file will define and use flags that are
126meaningful to that file. Any application that links in that file will get the
127flags, and the gflags library will automatically handle that flag
128appropriately.")
129 (license bsd-3)))
ba6a996e
RW
130
131(define-public gengetopt
132 (package
133 (name "gengetopt")
02dad49d 134 (version "2.23")
ba6a996e
RW
135 (source
136 (origin
137 (method url-fetch)
138 (uri (string-append "mirror://gnu/gengetopt/gengetopt-"
02dad49d 139 version ".tar.xz"))
ba6a996e
RW
140 (sha256
141 (base32
02dad49d 142 "1b44fn0apsgawyqa4alx2qj5hls334mhbszxsy6rfr0q074swhdr"))))
ba6a996e
RW
143 (build-system gnu-build-system)
144 (arguments
7d1986c4
MB
145 `(#:parallel-build? #f ; not supported
146 #:parallel-tests? #f)) ; likewise
02dad49d
LC
147 (native-inputs
148 `(("texinfo" ,texinfo)))
ba6a996e
RW
149 (synopsis "Create parsers for command line options")
150 (description
151 "GNU Gengetopt is a program to generate a C/C++ function for parsing
152command-line options using the getopt_long function found in GNU
153libc, removing some of the tedium of this task for large programs
154that accept many options. The options parsed by the generated
155function may be in both short (e.g., \"-h\") and long (\"--help\")
156formats, as specified by the GNU coding standards. Additionally, the
157output of the standard options \"--help\" and \"--version\" is generated
158automatically.")
6fd52309 159 (home-page "https://www.gnu.org/software/gengetopt/gengetopt.html")
ba6a996e 160 (license gpl3+)))