recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / tools / pm-utils / recipe
blob9a53ef17f90996fda8ab9145aac84801be34878b
1 # Build recipe for pm-utils.
3 # Copyright (c) 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=pm-utils
18 version=1.4.1
19 release=1
21 # Define a category for the output of the package name
22 pkgcategory=tools
24 tarname=${program}-${version}.tar.gz
26 # Remote source(s)
27 fetch=http://pm-utils.freedesktop.org/releases/$tarname
29 description="
30 Power management utilities.
32 The power management utilities provide simple shell command line
33 tools to suspend and hibernate the computer.  They can be used to
34 run user supplied scripts on suspend and resume.
37 homepage=http://pm-utils.freedesktop.org
38 license=GPLv2+
40 # Source documentation
41 docs="AUTHORS COPYING ChangeLog NEWS README TODO"
42 docsdir="${docdir}/${program}-${version}"
44 build()
46     set -e
48     unpack "${tardir}/$tarname"
50     cd "$srcdir"
52     # Set sane permissions
53     chmod -R u+w,go-w,a+rX-s .
55     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS -static" \
56      $configure_args \
57      --libdir=/usr/lib${libSuffix} \
58      --mandir=$mandir \
59      --docdir=$docsdir \
60      --build="$(cc -dumpmachine)"
62     make -j${jobs} V=1
63     make -j${jobs} DESTDIR="$destdir" install
65     # Compress and link man pages (if needed)
66     if test -d "${destdir}/$mandir"
67     then
68         (
69             cd "${destdir}/$mandir"
70             find . -type f -exec lzip -9 '{}' +
71             find . -type l | while read -r file
72             do
73                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
74                 rm -- "$file"
75             done
76         )
77     fi
79     # Copy documentation
80     mkdir -p "${destdir}${docsdir}"
81     cp -p $docs "${destdir}${docsdir}"