diff options
author | davidovski <david@davidovski.xyz> | 2021-10-06 23:29:58 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-10-06 23:29:58 +0100 |
commit | 7ff38024bec68fe70fb6eec0f5cd16188507558f (patch) | |
tree | d9f366b28b7d31ddbe3057669474f58962541a68 /repo/core/kbd.xibuild | |
parent | 76a1447eb1599f23165806b4ead10c5294039d05 (diff) |
added all lfs packages
Diffstat (limited to 'repo/core/kbd.xibuild')
-rw-r--r-- | repo/core/kbd.xibuild | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/repo/core/kbd.xibuild b/repo/core/kbd.xibuild new file mode 100644 index 0000000..3b18f26 --- /dev/null +++ b/repo/core/kbd.xibuild @@ -0,0 +1,12 @@ +#!/bin/bash + +DEPS=(glibc pam) + +SOURCE=https://mirrors.edge.kernel.org/pub/linux/utils/kbd/kbd-2.4.0.tar.xz +DESC="Keytable files and keyboard utilities" + +build () { + ./configure --prefix=/usr --disable-vlock + make + make DESTDIR=$PKG_DEST install +} |