1 # Build recipe for libcap.
3 # Copyright (c) 2016-2019 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.
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/libs"
24 tarname=${program}-${version}.tar.gz
27 fetch=http://mirrors.edge.kernel.org/pub/linux/libs/security/linux-privs/libcap2/$tarname
30 Library with capabilities for POSIX.1e.
32 The libcap package implements the user-space interfaces to the
33 POSIX 1003.1e capabilities available in Linux kernels.
35 These capabilities are a partitioning of the all powerful root
36 privilege into a set of distinct privileges.
39 homepage=http://sites.google.com/site/fullycapable
42 # Source documentation
43 docs="CHANGELOG License README"
44 docsdir="${docdir}/${program}-${version}"
50 unpack "${tardir}/$tarname"
54 # Set sane permissions
55 chmod -R u+w,go-w,a+rX-s .
57 make DEBUG="" CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS"
59 make install RAISE_SETFCAP=no \
61 LIBDIR=/usr/lib${libSuffix} \
63 PKGCONFIGDIR=/usr/lib${libSuffix}/pkgconfig
66 chmod 755 "${destdir}/usr/lib${libSuffix}/libcap.so"
68 # Compress and link man pages (if needed)
69 if test -d "${destdir}/$mandir"
72 cd "${destdir}/$mandir"
73 find . -type f -exec lzip -9 '{}' +
74 find . -type l | while read -r file
76 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
83 mkdir -p "${destdir}${docsdir}"
84 cp -p $docs "${destdir}${docsdir}"