mirror of
https://git.adityakumar.xyz/lfs-scripts.git
synced 2024-11-22 03:52:52 +00:00
31 lines
387 B
Bash
31 lines
387 B
Bash
#!/bin/bash
|
|
|
|
cd /sources
|
|
tar xf kbd-2.5.1.tar.xz
|
|
cd kbd-2.5.1
|
|
|
|
patch -Np1 -i ../kbd-2.5.1-backspace-1.patch
|
|
|
|
sed -i '/RESIZECONS_PROGS=/s/yes/no/' configure
|
|
sed -i 's/resizecons.8 //' docs/man/man8/Makefile.in
|
|
|
|
./configure --prefix=/usr --disable-vlock
|
|
|
|
if [ $? -ne 0 ]
|
|
then
|
|
exit 1
|
|
fi
|
|
|
|
make -j5
|
|
|
|
if [ $? -ne 0 ]
|
|
then
|
|
exit 1
|
|
fi
|
|
|
|
make check
|
|
|
|
make install
|
|
|
|
cd /sources
|
|
rm -rf kbd-2.5.1
|