recipes: Adjust 'docsdir' variable to be consistent with the current recipe format
[dragora.git] / recipes / networking / libnl3 / recipe
blobdd0b5f83eed29d2fdf757065174440a67f8e1c04
1 # Build recipe for libnl.
3 # Copyright (c) 2017-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.
17 # Exit immediately on any error
18 set -e
20 program=libnl
21 version=3.5.0
22 release=1
24 pkgname=libnl3
26 # Define a category for the output of the package name
27 pkgcategory=networking
29 tarname=${program}-${version}.tar.gz
31 # Remote source(s)
32 fetch=https://github.com/thom311/libnl/releases/download/libnl3_5_0/$tarname
34 description="
35 Netlink protocol library suite.
37 The libnl suite is a collection of libraries providing APIs to netlink
38 protocol based Linux kernel interfaces.
40 Netlink is a IPC mechanism primarly between the kernel and user space
41 processes.  It was designed to be a more flexible successor to ioctl
42 to provide mainly networking related kernel configuration and
43 monitoring interfaces.
46 homepage=https://www.infradead.org/~tgr/libnl/
47 license=LGPLv2.1
49 # Source documentation
50 docs="COPYING ChangeLog"
51 docsdir="${docdir}/${pkgname}-${version}"
53 build()
55     unpack "${tardir}/$tarname"
57     cd "$srcdir"
59     # Set sane permissions
60     chmod -R u+w,go-w,a+rX-s .
62     ./configure CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
63      $configure_args \
64      --libdir=/usr/lib${libSuffix} \
65      --docdir=$docsdir \
66      --infodir=$infodir \
67      --mandir=$mandir \
68      --enable-static=yes \
69      --enable-shared=yes \
70      --disable-debug \
71      --build="$(gcc -dumpmachine)"
73     make -j${jobs} V=1
74     make -j${jobs} DESTDIR="$destdir" install
76     # Manage dot new config file(s)
77     touch "${destdir}/etc/libnl/.graft-config"
79     # Compress info documents deleting index file for the package
80     if test -d "${destdir}/$infodir"
81     then
82         rm -f "${destdir}/${infodir}/dir"
83         lzip -9 "${destdir}/${infodir}"/*
84     fi
86     # Compress and link man pages (if needed)
87     if test -d "${destdir}/$mandir"
88     then
89         (
90             cd "${destdir}/$mandir"
91             find . -type f -exec lzip -9 {} +
92             find . -type l | while read -r file
93             do
94                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
95                 rm -- "$file"
96             done
97         )
98     fi
100     # Copy documentation
101     mkdir -p "${destdir}/$docsdir"
103     for file in $docs
104     do
105         cp -p $file "${destdir}/$docsdir"
106     done