Start mass upgrade
[dragora.git] / recipes / libs / libcap-ng / recipe
blob9e96d12d647dcbd9ce2971ee46b86293964ccbe0
1 # Build recipe for libcap-ng.
3 # Copyright (c) 2018-2022 Matias Fonzo, <selk@dragora.org>.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 # Exit immediately on any error
18 set -e
20 program=libcap-ng
21 version=0.8.2
22 release=2
24 # Define a category for the output of the package name
25 pkgcategory=libs
27 tarname=${program}-${version}.tar.gz
29 # Remote source(s)
30 fetch=https://people.redhat.com/sgrubb/libcap-ng/$tarname
32 description="
33 An alternate POSIX capabilities library.
34         
35 The libcap-ng library is intended to make programming with POSIX
36 capabilities much easier than the traditional libcap library.
38 It includes utilities that can analyse all currently running
39 applications and print out any capabilities and whether or not it has
40 an open ended bounding set. An open bounding set without the securebits
41 \"NOROOT\" flag will allow full capabilities escalation for apps
42 retaining UID 0 simply by calling execve.
45 homepage=https://people.redhat.com/sgrubb/libcap-ng/
46 license="GPLv2+, LGPLv2.1"
48 # Source documentation
49 docs="AUTHORS COPYING* ChangeLog NEWS README*"
50 docsdir="${docdir}/${program}-${version}"
52 build()
54     unpack "${tardir}/$tarname"
56     cd "$srcdir"
58     # Set sane permissions
59     chmod -R u+w,go-w,a+rX-s .
61     ./configure CPPFLAGS="$QICPPFLAGS" \
62     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
63      $configure_args \
64      --libdir=/usr/lib${libSuffix} \
65      --infodir=$infodir \
66      --mandir=$mandir \
67      --docdir=$docsdir \
68      --enable-static=yes \
69      --enable-shared=yes \
70      --with-python=no \
71      --with-python3 \
72      --build="$(gcc -dumpmachine)"
74     make -j${jobs} V=1
75     make -j${jobs} DESTDIR="$destdir" install-strip
77     # Compress info documents deleting index file for the package
78     if test -d "${destdir}/$infodir"
79     then
80         rm -f "${destdir}/${infodir}/dir"
81         lzip -9 "${destdir}/${infodir}"/*
82     fi
84     # Compress and link man pages (if needed)
85     if test -d "${destdir}/$mandir"
86     then
87         (
88             cd "${destdir}/$mandir"
89             find . -type f -exec lzip -9 {} +
90             find . -type l | while read -r file
91             do
92                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
93                 rm -- "$file"
94             done
95         )
96     fi
98     # Copy documentation
99     mkdir -p "${destdir}${docsdir}"
100     cp -p $docs "${destdir}${docsdir}"/