recipes: Adjust recipe format (minor changes)
[dragora.git] / recipes / tools / kbd / recipe
blob18cbcae4569010b1170c7de548735e9d0b60407a
1 # Build recipe for kbd.
3 # Copyright (c) 2016-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=kbd
21 version=2.2.0
22 release=3
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=http://mirrors.edge.kernel.org/pub/linux/utils/kbd/$tarname
32 description="
33 Keyboard utilities for GNU/Linux.
35 The kbd package contains key-table files and keyboard utilities.
38 homepage=http://kbd-project.org
39 license=GPLv2+
41 # Source documentation
42 docs="AUTHORS COPYING CREDITS ChangeLog NEWS 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     # Fix inconsistent behaviour of Backspace and Delete keys
55     # for i386 keymaps (Thanks to "Linux From Scratch")
56     patch -Np1 -i "${worktree}/patches/kbd/kbd-2.2.0-backspace-1.patch"
58     # Remove the redundant resizecons program (it requires the defunct
59     # svgalib to provide the video mode files - for normal use setfont
60     # sizes the console appropriately) together with its manpage.
61     # (Thanks again to "Linux From Scratch")
62     sed -i 's/\(RESIZECONS_PROGS=\)yes/\1no/g' configure
63     sed -i 's/resizecons.8 //' docs/man/man8/Makefile.in
65     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
66      $configure_args \
67      --libdir=/usr/lib${libSuffix} \
68      --mandir=$mandir \
69      --disable-vlock \
70      --enable-optional-progs \
71      --enable-nls \
72      --build="$(gcc -dumpmachine)"
74     make -j${jobs} V=1
75     make -j${jobs} DESTDIR="$destdir" install
77     # Include Dragora's menu-driven tool to configure the keyboard map
79     mkdir -p "${destdir}/usr/sbin"
80     cp -p "${worktree}/archive/dragora-tools/dragora-keymap" \
81           "${destdir}/usr/sbin"
82     chmod 755 "${destdir}/usr/sbin/dragora-keymap"
84     # Compress and link man pages (if needed)
85     if test -d "${destdir}/$mandir"
86     then
87         (
88             cd "${destdir}/$mandir"
89             find . -type f -exec lzip -9 {} +
90             find . -type l | while read -r file
91             do
92                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
93                 rm -- "$file"
94             done
95         )
96     fi
98     # Copy documentation
99     mkdir -p "${destdir}${docsdir}"
101     for file in $docs
102     do
103         cp -p $file "${destdir}${docsdir}"
104     done