smlinux/base/kbd/kbd.SMBuild
PktSurf 45e2c3bd44 Added ftjam, libptytty to base
Removed dmraid, iniparser, jam, libatasmart, libblockdev, libbytesize, libyaml, mozjs, ndctl, polkit, rpi-userland, sccache from base
Removed docdir, sysconfdir and prefix quotes from autoconf build option and similar options from various packages in base
Added apparch variables to base/{acpid,dmidecode,gnu-efi,pciutils,syslinux}
Added udev rules build option to base/alsa-utils
Discarded --offline option in base/cbindgen
Upgraded base/cmake to 3.26.4
Added --without-x build option to base/dialog
Upgraded base/gawk to 5.2.2
Upgraded base/glib to 2.76.3
Disabled tests and examples in base/gloox
Upgraded base/gnupg2 to 2.2.41
Upgraded base/gnutls to 3.8.0
Upgraded base/gpgme to 1.20.0
Fixed make command option ordering in base/{hdparm,p7zip}
Upgraded base/libgpg-error to 1.47
Upgraded base/libjpeg-turbo to 2.1.5.1
Upgraded base/libuv to 1.45.0
Discarded some build options to base/libxml2
Upgraded base/llvm to 15.0.7
Fixed subshell code in base/lua53
Removed --prefix= in several python package build files, added /usr as prefix in base/python3
Upgraded base/musl to 1.2.4
Upgraded base/nettle to 3.9
Upgraded base/nghttp2 to 1.53.0
Added --without-trust-paths to base/p11-kit
Upgraded base/qpdf to 11.4.0
Discarded base/rpi-userland
Upgraded base/rust to 1.69.0
Upgraded base/sqlite to 3420000
Added $CFLAGS to base/unzip
Added -fPIC option to base/yasm
Updated base build list
2023-06-04 21:53:45 +05:30

55 lines
1.7 KiB
Text
Executable file

# Maintainer: PktSurf <smlinux@pktsurf.in>
app=kbd
version=2.0.4
build=1sml
homepage="http://ftp.iij.ad.jp/pub/linux/kernel/linux/utils/kbd/"
download="https://ftp.iij.ad.jp/pub/linux/kernel/linux/utils/kbd/kbd-$version.tar.xz"
desc="utility to change console fonts and keyborad mappings"
requires="busybox"
prepbuilddir() {
mkandenterbuilddir
rm -rf $app-$version
tar xf $srcdir/$app-$version.tar.?z*
cd $app-$version
fixbuilddirpermissions
}
build() {
cp $srcdir/config.h src/
cp $srcdir/config.h src/libkeymap/
sed -i 's/progname/prgname/g' src/loadkeys.c
gcc -Isrc -Isrc/libkeymap src/libkeymap/common.c \
src/libkeymap/findfile.c src/libkeymap/array.c \
src/libkeymap/parser.c src/libkeymap/analyze.c \
src/libkeymap/func.c src/libkeymap/kmap.c \
src/libkeymap/diacr.c src/libkeymap/ksyms.c \
src/libkeymap/dump.c src/libkeymap/loadkeys.c \
src/libkeymap/modifiers.c \
src/kbd_error.c src/getfd.c \
src/loadkeys.c -o loadkeys
# generate busybox loadkmap compatible keymaps from the gnu ones
# taken from http://hg.slitaz.org/wok/file/3f989c266063/kbd-busybox/receipt
mkdir -p "$pkg"/share/kmap
for i in $(cat $srcdir/keymaps) ; do
k=$(basename $i)
k=${k%.map} # strips off .map from $k
./loadkeys -b -q data/keymaps/i386/$i > "$pkg"/share/kmap/$k.kmap || echo "Error loadkeys...$i"
done
install -Dm 755 $srcdir/loadkeys $pkg/bin/loadkeys
cp COPYING $pkgdocs/
mkfinalpkg
}
sha512sums="
61a580eacde492e241c725572eb89087cf0f226ebeba05685e9ff1e53269357c64f7405d893fcad82f5147f0ec239ea313a3cc9b91efed80c0606d325019b83d kbd-2.0.4.tar.lz
ef992b2e7b7ac30b19ed22a6e263d09a6711f7aba2e473a70586c7aa48df8eac9846cef1a490c49de330123e7070e77ffb8b469d4a78b930ca0f72b134b204d1 config.h
"