qi: make release of qi 1.1
[dragora.git] / recipes / libs / libcap / recipe
blob097c4d03999a0fe361534d53bee9c74dddcf819d
1 # Build recipe for libcap.
3 # Copyright (c) 2016-2018 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 program=libcap
18 version=2.26
19 release=1
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/libs"
24 tarname=${program}-${version}.tar.gz
26 # Remote source(s)
27 fetch=http://mirrors.edge.kernel.org/pub/linux/libs/security/linux-privs/libcap2/$tarname
29 description="
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
40 license=GPLv2+
42 # Source documentation
43 docs="CHANGELOG License README"
44 docsdir="${docdir}/${program}-${version}"
46 build()
48     set -e
50     unpack "${tardir}/$tarname"
52     cd "$srcdir"
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 \
60                  DESTDIR="$destdir" \
61                  LIBDIR=/usr/lib${libSuffix} \
62                  SBINDIR=/usr/sbin \
63                  PKGCONFIGDIR=/usr/lib${libSuffix}/pkgconfig
65     # Fix permissions of execution
66     chmod 755 "${destdir}/usr/lib${libSuffix}/libcap.so"
68     # Compress and link man pages (if needed)
69     if test -d "${destdir}/$mandir"
70     then
71         (
72             cd "${destdir}/$mandir"
73             find . -type f -exec lzip -9 '{}' +
74             find . -type l | while read -r file
75             do
76                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
77                 rm -- "$file"
78             done
79         )
80     fi
82     # Copy documentation
83     mkdir -p "${destdir}${docsdir}"
84     cp -p $docs "${destdir}${docsdir}"