annotate lib/popt/popt.info @ 137:f443cbb93f37

databases: merge .sh and .info
author David Demelier <markand@malikania.fr>
date Mon, 11 Mar 2019 15:10:39 +0100
parents 24dcabcf0297
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
124
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
1 #!/bin/sh
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
2 #
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
3 # Copyright (c) 2019 David Demelier <markand@malikania.fr>
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
4 #
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
5 # Permission to use, copy, modify, and/or distribute this software for any
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
6 # purpose with or without fee is hereby granted, provided that the above
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
7 # copyright notice and this permission notice appear in all copies.
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
8 #
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
9 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
10 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
11 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
12 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
13 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
14 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
15 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
16 #
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
17
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
18 PKGNAME=popt
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
19 PKGVERSION=1.16
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
20 PKGREVISION=1
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
21 PKGLICENSE="CUSTOM"
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
22 PKGSUMMARY="command line option parser"
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
23 PKGDOWNLOAD="http://rpm5.org/files/$PKGNAME/$PKGNAME-$PKGVERSION.tar.gz"
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
24 PKGOPTIONS="NLS"
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
25
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
26 if [ "$NLS" = "yes" ]; then
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
27 PKGDEPENDS="core/gettext $PKGDEPENDS"
24dcabcf0297 lib/popt: initial import, closes #1181
David Demelier <markand@malikania.fr>
parents:
diff changeset
28 fi