talimat 738 B

12345678910111213141516171819202122232425262728
  1. # Description: The Kbd package contains key-table files, console fonts, and keyboard utilities
  2. # URL: ftp://devel.altlinux.org/legion/kbd/
  3. # Packager: Risto Kankkunen's
  4. # Maintainer: pierre at nutyx dot org
  5. name=kbd
  6. version=2.0.3
  7. release=2
  8. source=(http://ftp.altlinux.com/pub/people/legion/kbd/kbd-$version.tar.xz \
  9. http://www.linuxfromscratch.org/patches/downloads/$name/$name-$version-backspace-1.patch)
  10. build()
  11. {
  12. cd kbd-$version
  13. patch -Np1 -i ../$name-$version-backspace-1.patch
  14. sed -i 's/\(RESIZECONS_PROGS=\)yes/\1no/g' configure
  15. sed -i 's/resizecons.8 //' docs/man/man8/Makefile.in
  16. PKG_CONFIG_PATH=/tools/lib/pkgconfig ./configure --prefix=/usr \
  17. --bindir=/bin --datadir=/lib/kbd
  18. make
  19. make check
  20. make DESTDIR=$PKG install
  21. }