core/kbd/Pkgfile

34 lines
1.0 KiB
Plaintext

# Description: Keytable files and keyboard utilities
# URL: http://kbd-project.org/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=kbd
version=2.0.3
release=1
source=(http://ftp.kernel.org/pub/linux/utils/$name/$name-$version.tar.xz)
build() {
cd $name-$version
# we don't want a dependency to 'check'
sed -i '/^SUBDIR/s/tests//' Makefile.am
sed -i '/\[check >= 0.9.4\]/s/^/#/' configure.ac
autoreconf --install
./configure --prefix=/usr \
--mandir=/usr/man \
--datadir=/usr/share/kbd \
--disable-vlock \
--disable-nls
make
make DESTDIR=$PKG install
ln -sf default8x16.psfu.gz $PKG/usr/share/kbd/consolefonts/default.gz
rm -r $PKG/usr/share/kbd/keymaps/{ppc,mac,atari,amiga,sun}
rm $PKG/usr/bin/{loadunimap,mapscrn,resizecons,psf*table}
rm $PKG/usr/man/man8/{loadunimap,mapscrn,resizecons}.8
rm $PKG/usr/man/man1/psf*table.1
find $PKG/usr/share/kbd/ -type f -name "README*" -delete
}