recipes: Adjust 'docsdir' variable to be consistent with the current recipe format
[dragora.git] / recipes / xorg / extra / xdg-utils / recipe
blob6b5eaa9d0dabb06cca0787b3c47e974481a13fbd
1 # Build recipe for xdg-utils.
3 # Copyright (c) 2019, 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=xdg-utils
21 version=20201021_d11b33e
22 arch=noarch
23 release=1
25 # Define a category for the output of the package name
26 pkgcategory=xorg_extra
28 tarname=${program}-${version}.tar.lz
30 # Remote source(s)
31 fetch="
32  https://dragora.mirror.garr.it/current/sources/$tarname
33  rsync://rsync.dragora.org/current/sources/$tarname
36 description="
37 A set of tools that assist applications for desktop integration tasks.
39 xdg-utils is a set of tools that allows applications to easily
40 integrate with the desktop environment of the user, regardless
41 of the specific desktop environment that the user runs.
43 About half of the tools focus on tasks commonly required during
44 the installation of a desktop application and the other half
45 focuses on integration with the desktop environment while the
46 application is running.
49 homepage=https://freedesktop.org/wiki/Software/xdg-utils
50 license=Custom
52 # Source documentation
53 docs="ChangeLog LICENSE README RELEASE_NOTES TODO scripts/HACKING"
54 docsdir="${docdir}/${program}-${version}"
56 build()
58     unpack "${tardir}/$tarname"
60     cd "$srcdir"
62     # Set sane permissions
63     chmod -R u+w,go-w,a+rX-s .
65     ./configure $configure_args \
66      --mandir=$mandir \
67      --docdir=$docsdir \
68      --build="$(gcc -dumpmachine)"
70     make -j${jobs} V=1
71     make -j${jobs} DESTDIR="$destdir" install
73     # Compress and link man pages (if needed)
74     if test -d "${destdir}/$mandir"
75     then
76         (
77             cd "${destdir}/$mandir"
78             find . -type f -exec lzip -9 {} +
79             find . -type l | while read -r file
80             do
81                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
82                 rm -- "$file"
83             done
84         )
85     fi
87     # Copy documentation
88     mkdir -p "${destdir}/$docsdir"
89     cp -p $docs "${destdir}/$docsdir"