CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
pkgutils: fixed CFLAGS used
[crossrootfs.git] / kbd / Pkgfile
CommitLineData
6dca1d21
JB
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
b751b192 4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
6dca1d21
JB
5# Depends on:
6
7name=kbd
8ddf4ca5 8version=1.15.5
48c5606b 9release=1
6dca1d21
JB
10source=(ftp://ftp.altlinux.org/pub/people/legion/kbd/$name-$version.tar.gz)
11
12build() {
13 cd $name-$version
14
42eaf3c2 15 export CC="$CC" RANLIB="$RANLIB"
6dca1d21
JB
16
17 cat > config.cache <<EOF
18ac_cv_func_setpgrp_void=yes
19ac_cv_func_malloc_0_nonnull=yes
20ac_cv_func_realloc_0_nonnull=yes
21EOF
22
23 ./configure --build=$CHOST \
24 --host=$CTARGET \
25 --prefix=/usr \
26 --mandir=/usr/man \
27 --datadir=/usr/share/kbd \
8ddf4ca5 28 --disable-vlock \
6dca1d21
JB
29 --disable-nls \
30 --cache-file=config.cache
8ddf4ca5 31 make -j1
6dca1d21
JB
32 make DESTDIR=$PKG install
33
04d749b6 34 ln -sf default8x16.psfu.gz $PKG/usr/share/kbd/consolefonts/default.gz
6dca1d21
JB
35
36 rm -r $PKG/usr/share/kbd/keymaps/{ppc,mac,atari,amiga,sun}
8ddf4ca5
VM
37 rm $PKG/usr/bin/{loadunimap,mapscrn,psf*table}
38 rm $PKG/usr/man/man8/{loadunimap,mapscrn}.8
39 rm $PKG/usr/man/man1/psf*table.1
40 find $PKG/usr/share/kbd/ -type f -name "README*" -delete
6dca1d21 41}