Initial import

This commit is contained in:
Kim Scarborough
2019-03-09 17:30:13 -06:00
commit 11225642ca
2 changed files with 30 additions and 0 deletions

12
.SRCINFO Normal file
View File

@@ -0,0 +1,12 @@
pkgbase = vmware-keymaps
pkgdesc = Keymaps required by some VMware packages
pkgver = 1.0
pkgrel = 1
url = https://www.vmware.com/
arch = any
license = custom:none
source = vmware-keymaps-1.0.tar.gz::https://github.com/chowbok/vmware-keymaps/archive/master.tar.gz
sha256sums = cec825761cbd4ca7a682ff34f7a467f14439e1be0fb8f85aaa7a407fc96e177a
pkgname = vmware-keymaps

18
PKGBUILD Normal file
View File

@@ -0,0 +1,18 @@
# Maintainer: Kim Scarborough <sluggo@unknown.nu>
pkgname=vmware-keymaps
pkgver=1.0
pkgrel=1
pkgdesc="Keymaps required by some VMware packages"
arch=('any')
url="https://www.vmware.com/"
license=('custom:none')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/chowbok/${pkgname}/archive/master.tar.gz")
sha256sums=('cec825761cbd4ca7a682ff34f7a467f14439e1be0fb8f85aaa7a407fc96e177a')
package() {
install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
echo "The contents of this package are ineligible for copyright protection." > "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -dm755 "${pkgdir}/usr/lib/vmware/xkeymap"
install -Dm644 "${srcdir}"/${pkgname}-master/* "${pkgdir}/usr/lib/vmware/xkeymap"
}