recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / xorg / extra / xdg-utils / recipe
blobdf9ad9a37381bddc18257092b86fa164e66d44b3
1 # Build recipe for xdg-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=xdg-utils
18 version=20190413_0547886
19 arch=noarch
20 release=1
22 # Define a category for the output of the package name
23 pkgcategory=xorg
25 tarname=${program}-${version}.tar.lz
27 # Remote source(s)
28 fetch="
29  http://rsync.dragora.org/current/sources/$tarname
30  http://mirror.cedia.org.ec/dragora/current/sources/$tarname
33 description="
34 A set of tools that assist applications for desktop integration tasks.
36 xdg-utils is a set of tools that allows applications to easily
37 integrate with the desktop environment of the user, regardless
38 of the specific desktop environment that the user runs.
40 About half of the tools focus on tasks commonly required during
41 the installation of a desktop application and the other half
42 focuses on integration with the desktop environment while the
43 application is running.
46 homepage=http://freedesktop.org/wiki/Software/xdg-utils
47 license=Custom
49 # Source documentation
50 docs="ChangeLog LICENSE README RELEASE_NOTES TODO scripts/HACKING"
51 docsdir="${docdir}/${program}-${version}"
53 build()
55     set -e
57     unpack "${tardir}/$tarname"
59     cd "$srcdir"
61     # Set sane permissions
62     chmod -R u+w,go-w,a+rX-s .
64     ./configure $configure_args \
65      --mandir=$mandir \
66      --docdir=$docsdir \
67      --build="$(cc -dumpmachine)"
69     make -j${jobs} V=1
70     make -j${jobs} DESTDIR="$destdir" install
72     # Compress and link man pages (if needed)
73     if test -d "${destdir}/$mandir"
74     then
75         (
76             cd "${destdir}/$mandir"
77             find . -type f -exec lzip -9 '{}' +
78             find . -type l | while read -r file
79             do
80                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
81                 rm -- "$file"
82             done
83         )
84     fi
86     # Copy documentation
87     mkdir -p "${destdir}${docsdir}"
88     cp -p $docs "${destdir}${docsdir}"