stages: 2/04-iso: Do not include kernel build/source tree in the LiveCD
[dragora.git] / recipes / libs / libcap / recipe
blob29158735e7b8c7cac8036cc5cfe7a6e5292109d9
1 # Build recipe for libcap.
3 # Copyright (c) 2016-2019, 2021-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
21 version=2.66
22 release=1
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://mirrors.edge.kernel.org/pub/linux/libs/security/linux-privs/libcap2/$tarname
32 description="
33 Library with capabilities for POSIX.1e.
35 The libcap package implements the user-space interfaces to the
36 POSIX 1003.1e capabilities available in Linux kernels.
38 These capabilities are a partitioning of the all powerful root
39 privilege into a set of distinct privileges.
42 homepage=https://sites.google.com/site/fullycapable
43 license=GPLv2+
45 # Source documentation
46 docs="CHANGELOG License README"
47 docsdir="${docdir}/${program}-${version}"
49 build()
51     unpack "${tardir}/$tarname"
53     cd "$srcdir"
55     # Set sane permissions
56     chmod -R u+w,go-w,a+rX-s .
58     make DEBUG="" COPTS="$QICFLAGS" LDFLAGS="$QILDFLAGS"
60     make install RAISE_SETFCAP=no \
61                  DESTDIR="$destdir" \
62                  LIBDIR=/usr/lib${libSuffix} \
63                  SBINDIR=/usr/sbin \
64                  PKGCONFIGDIR=/usr/lib${libSuffix}/pkgconfig
66     # Fix permissions
67     chmod 755 "${destdir}/usr/lib${libSuffix}/libcap.so"
69     # Compress and link man pages (if needed)
70     if test -d "${destdir}/$mandir"
71     then
72         (
73             cd "${destdir}/$mandir"
74             find . -type f -exec lzip -9 {} +
75             find . -type l | while read -r file
76             do
77                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
78                 rm -- "$file"
79             done
80         )
81     fi
83     # Copy documentation
84     mkdir -p "${destdir}/$docsdir"
85     cp -p $docs "${destdir}/$docsdir"