diff options
Diffstat (limited to 'pcr-testing/ckbcomp/PKGBUILD')
-rw-r--r-- | pcr-testing/ckbcomp/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pcr-testing/ckbcomp/PKGBUILD b/pcr-testing/ckbcomp/PKGBUILD new file mode 100644 index 000000000..a2df9ad7c --- /dev/null +++ b/pcr-testing/ckbcomp/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: bill-auger <bill-auger@programmer.net> +# Contributor: Nissar Chababy <funilrys at outlook dot com> +# Contributor: Jeroen Bollen <jbinero at gmail dot comau> + + +pkgname=ckbcomp +pkgver=1.184 +pkgrel=1 +pkgdesc="Compile a XKB keyboard description to a keymap suitable for loadkeys or kbdcontrol" +arch=('any') +url="https://tracker.debian.org/pkg/console-setup" +license=('GPL') + +depends=('perl') + +source=("http://ftp.debian.org/debian/pool/main/c/console-setup/console-setup_${pkgver}.tar.xz") +sha256sums=('7c010f152003331f5560246494f781eca237b87bed69cb8cde6fae54c604fcb3') + + +package() +{ + cd console-setup + + install -D -m755 Keyboard/ckbcomp ${pkgdir}/usr/bin/ckbcomp +} |