CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
libgmp: updated to 5.1.3
[ports/core-arm.git] / kbd / Pkgfile
1 # Description: Keytable files and keyboard utilities
2 # URL: ftp://ftp.win.tue.nl/pub/linux-local/utils/kbd/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5 # Depends on:
6
7 name=kbd
8 version=2.0.0
9 release=1
10 source=(ftp://ftp.altlinux.org/pub/people/legion/kbd/$name-$version.tar.gz)
11
12 build() {
13 cd $name-$version
14
15 # we don't want a dependency to 'check'
16 sed -i '/^SUBDIR/s/tests//' Makefile.am
17 sed -i '/\[check >= 0.9.4\]/s/^/#/' configure.ac
18 autoreconf --install
19
20 ./configure --prefix=/usr \
21 --mandir=/usr/man \
22 --datadir=/usr/share/kbd \
23 --disable-vlock \
24 --disable-nls
25 make
26 make DESTDIR=$PKG install
27
28 ln -sf default8x16.psfu.gz $PKG/usr/share/kbd/consolefonts/default.gz
29
30 rm -r $PKG/usr/share/kbd/keymaps/{ppc,mac,atari,amiga,sun}
31 rm $PKG/usr/bin/{loadunimap,mapscrn,psf*table}
32 rm $PKG/usr/man/man8/{loadunimap,mapscrn,resizecons}.8
33 rm $PKG/usr/man/man1/psf*table.1
34 find $PKG/usr/share/kbd/ -type f -name "README*" -delete
35 }