recipes: Adjust 'docsdir' variable to be consistent with the current recipe format
[dragora.git] / recipes / tools / procps-ng / recipe
blob6bb354b4747b9f3be1a59ba8cc44ceb439a80ab7
1 # Build recipe for procps-ng.
3 # Copyright (c) 2016-2018, 2021 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=procps-ng
21 version=3.3.17
22 release=1
24 # Define a category for the output of the package name
25 pkgcategory=tools
27 tarname=${program}-${version}.tar.xz
29 # Remote source(s)
30 fetch=https://downloads.sourceforge.net/project/procps-ng/Production/$tarname
32 description="
33 The /proc file system utilities.
35 Procps-ng is the package that has a bunch of small utilities that give
36 information about processes using the /proc filesystem.
38 The package includes: sysctl, pgrep, top, w, pwdx, vmstat, pkill,
39 tload, slabtop, pidof, uptime, watch, free, pmap, ps.
42 homepage=https://sourceforge.net/projects/procps-ng
43 license="GPLv2+, LGPLv2+"
45 # Source documentation
46 docs="AUTHORS COPYING* ChangeLog NEWS"
47 docsdir="${docdir}/${program}-${version}"
49 # The source directory has a different name
50 srcdir=procps-${version}
52 build()
54     unpack "${tardir}/$tarname"
56     cd "$srcdir"
58     # Apply a patch taken from "Alpine Linux"
59     patch -Np1 -i "${worktree}/patches/procps-ng/musl-fixes.patch"
61     # Set sane permissions
62     chmod -R u+w,go-w,a+rX-s .
64     ./configure CPPFLAGS="$QICPPFLAGS" \
65     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
66      $configure_args \
67      --libdir=/usr/lib${libSuffix} \
68      --infodir=$infodir \
69      --mandir=$mandir \
70      --docdir=$docsdir \
71      --disable-static \
72      --enable-shared \
73      --disable-kill \
74      --disable-modern-top \
75      --without-systemd \
76      --build="$(gcc -dumpmachine)"
78     make -j${jobs} V=1
79     make -j${jobs} DESTDIR="$destdir" install-strip
81     # Compress info documents deleting index file for the package
82     if test -d "${destdir}/$infodir"
83     then
84         rm -f "${destdir}/${infodir}/dir"
85         lzip -9 "${destdir}/${infodir}"/*
86     fi
88     # Compress and link man pages (if needed)
89     if test -d "${destdir}/$mandir"
90     then
91         (
92             cd "${destdir}/$mandir"
93             find . -type f -exec lzip -9 {} +
94             find . -type l | while read -r file
95             do
96                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
97                 rm -- "$file"
98             done
99         )
100     fi
102     # Copy documentation
103     mkdir -p "${destdir}/$docsdir"
104     cp -p $docs "${destdir}/$docsdir"