1 # Build recipe for popt.
3 # Copyright (C) 2017 Alan Beadle, ab.beadle@gmail.com.
4 # Copyright (c) 2018-2019, 2021 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
25 # Define a category for the output of the package name
28 tarname=${program}-${version}.tar.gz
32 https://ftp.rpm.org/popt/releases/popt-1.x/$tarname
33 ftp://anduin.linuxfromscratch.org/BLFS/popt/$tarname
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
44 homepage=https://rpm5.org
45 license="MIT X Consortium"
47 # Source documentation
48 docs="CHANGES COPYING README"
49 docsdir="${docdir}/${program}-${version}"
53 unpack "${tardir}/$tarname"
57 # Set sane permissions
58 chmod -R u+w,go-w,a+rX-s .
60 ./configure CPPFLAGS="$QICPPFLAGS" \
61 CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
63 --libdir=/usr/lib${libSuffix} \
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
78 lzip -9 "${destdir}/${mandir}"/man?/*
81 mkdir -p "${destdir}${docsdir}"
82 cp -p $docs "${destdir}${docsdir}"