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