recipes: data/etc: bump version number
[dragora.git] / recipes / libs / popt / recipe
blob4820864c798ad062d63a3e52bea6b1ac942cdd1f
1 # Build recipe for popt.
3 # Copyright (C) 2017 Alan Beadle, ab.beadle@gmail.com.
4 # Copyright (c) 2018-2019 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 program=popt
19 version=1.16
20 release=2
22 # Set 'outdir' for a nice and well-organized output directory
23 outdir="${outdir}/${arch}/libs"
25 tarname=${program}-${version}.tar.gz
27 # Remote source(s)
28 fetch="
29   ftp://anduin.linuxfromscratch.org/BLFS/popt/$tarname
30   http://rsync.dragora.org/current/sources/$tarname
33 description="
34 Popt is a C library for parsing command line parameters.
36 Popt was heavily influenced by the getopt() and getopt_long()
37 functions, but it improves on them by allowing more powerful
38 argument expansion.
41 homepage=http://rpm5.org
42 license="MIT X Consortium"
44 # Source documentation
45 docs="CHANGES COPYING README"
46 docsdir="${docdir}/${program}-${version}"
48 build()
50     set -e
52     unpack "${tardir}/$tarname"
54     cd "$srcdir"
56     # Set sane permissions
57     chmod -R u+w,go-w,a+rX-s .
59     # Update for hosts based on musl
60     cp -f "${worktree}/archive/common/config.guess" ./config.guess
61     cp -f "${worktree}/archive/common/config.sub" ./config.sub
63     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
64      $configure_args \
65      --libdir=/usr/lib${libSuffix} \
66      --mandir=$mandir \
67      --docdir=$docsdir \
68      --enable-static=yes \
69      --enable-shared=yes \
70      --build="$(cc -dumpmachine)"
72     make -j${jobs} V=1 libdir=/usr/lib${libSuffix} \
73                        pkgconfigdir=/usr/lib${libSuffix}/pkgconfig
75     make -j${jobs} libdir=/usr/lib${libSuffix} \
76                    pkgconfigdir=/usr/lib${libSuffix}/pkgconfig \
77                    DESTDIR="${destdir}" install-strip
79     # Compress man pages
80     lzip -9 "${destdir}/${mandir}"/man?/*
82     # Copy documentation
83     mkdir -p "${destdir}${docsdir}"
84     cp -p $docs "${destdir}${docsdir}"