recipes: libs/*: Upgraded
[dragora.git] / recipes / libs / popt / recipe
blobe8ede779bb59bea70a309167036525e96d57c5da
1 # Build recipe for popt.
3 # Copyright (C) 2017 Alan Beadle, ab.beadle@gmail.com.
4 # Copyright (c) 2018-2019, 2021-2022 Matias Fonzo, <selk@dragora.org>.
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 #    http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
18 # Exit immediately on any error
19 set -e
21 program=popt
22 version=1.19
23 release=1
25 # Define a category for the output of the package name
26 pkgcategory=libs
28 tarname=${program}-${version}.tar.gz
30 # Remote source(s)
31 fetch="
32   https://ftp.rpm.org/popt/releases/popt-1.x/$tarname
33   ftp://anduin.linuxfromscratch.org/BLFS/popt/$tarname
36 description="
37 Popt is a C library for parsing command line parameters.
39 Popt was heavily influenced by the getopt() and getopt_long()
40 functions, but it improves on them by allowing more powerful
41 argument expansion.
44 homepage=https://rpm5.org
45 license="MIT X Consortium"
47 # Source documentation
48 docs="COPYING CREDITS README"
49 docsdir="${docdir}/${program}-${version}"
51 build()
53     unpack "${tardir}/$tarname"
55     cd "$srcdir"
57     # Set sane permissions
58     chmod -R u+w,go-w,a+rX-s .
60     ./configure CPPFLAGS="$QICPPFLAGS" \
61     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
62      $configure_args \
63      --libdir=/usr/lib${libSuffix} \
64      --mandir=$mandir \
65      --docdir=$docsdir \
66      --enable-static=yes \
67      --enable-shared=yes \
68      --build="$(gcc -dumpmachine)"
70     make -j${jobs} V=1 libdir=/usr/lib${libSuffix} \
71                        pkgconfigdir=/usr/lib${libSuffix}/pkgconfig
73     make -j${jobs} libdir=/usr/lib${libSuffix} \
74                    pkgconfigdir=/usr/lib${libSuffix}/pkgconfig \
75                    DESTDIR="${destdir}" install-strip
77     # Compress man pages
78     lzip -9 "${destdir}/${mandir}"/man?/*
80     # Copy documentation
81     mkdir -p "${destdir}/$docsdir"
82     cp -p $docs "${destdir}/$docsdir"