recipes: Remove extra stripping from install-strip automake target
[dragora.git] / recipes / tools / quota / recipe
blob8288eeba13baa675fc451021c668dad79554efca
1 # Build recipe for quota.
3 # Copyright (c) 2018-2020 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=quota
21 version=4.05
22 release=2
24 # Define a category for the output of the package name
25 pkgcategory=tools
27 tarname=${program}-${version}.tar.gz
29 # Remote source(s)
30 fetch=https://downloads.sourceforge.net/project/linuxquota/quota-tools/${version}/$tarname
32 description="
33 User space tools to manage the disk quota system.
35 Tools for the disk quota system as part of the Linux Kernel.
38 homepage=https://sourceforge.net/projects/linuxquota
39 license="GPLv2+ | BSD"
41 # Source documentation
42 docs="COPYING Changelog README*"
43 docsdir="${docdir}/${program}-${version}"
45 build()
47     unpack "${tardir}/$tarname"
49     cd "$srcdir"
51     # Set sane permissions
52     chmod -R u+w,go-w,a+rX-s .
54     # Apply patches to work under Musl (patches from Khem Raj)
55     patch -p1 < "${worktree}/patches/quota/fcntl.patch"
57     # This is one is from Dragora
58     patch -p1 < "${worktree}/patches/quota/cdefs.h.patch"
60     ./configure CPPFLAGS="-D_GNU_SOURCE -D_BSD_SOURCE" \
61     CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
62      $configure_args \
63      --libdir=/usr/lib${libSuffix} \
64      --sysconfdir=/etc/quota \
65      --mandir=$mandir \
66      --docdir=$docsdir \
67      --disable-werror \
68      --enable-rpc=yes \
69      --enable-ldapmail=no \
70      --build="$(gcc -dumpmachine)"
72     make -j${jobs} V=1
73     make -j${jobs} DESTDIR="$destdir" install
75     # To manage dot (new) config files via graft(1)
76     touch "${destdir}/etc/quota/.graft-config"
78     # Compress and link man pages (if needed)
79     if test -d "${destdir}/$mandir"
80     then
81         (
82             cd "${destdir}/$mandir"
83             find . -type f -exec lzip -9 {} +
84             find . -type l | while read -r file
85             do
86                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
87                 rm -- "$file"
88             done
89         )
90     fi
92     # Copy documentation
93     mkdir -p "${destdir}${docsdir}"
94     cp -p $docs "${destdir}${docsdir}"