initial commit

This commit is contained in:
Nilesh 2022-01-29 17:06:08 +05:30
commit 7c00b29dc6
No known key found for this signature in database
GPG key ID: 27CBB64272E42DB0
3 changed files with 32 additions and 0 deletions

12
.SRCINFO Normal file
View file

@ -0,0 +1,12 @@
pkgbase = xremap-x11-bin
pkgdesc = Dynamic key remapper for X11 and Wayland
pkgver = 0.2.3
pkgrel = 1
url = https://github.com/k0kubun/xremap
arch = x86_64
license = MIT
provides = xremap
source_x86_64 = https://github.com/k0kubun/xremap/releases/download/v0.2.3/xremap-linux-x86_64-x11.zip
sha256sums_x86_64 = 6aca43feaad710a5acc9075f77588edf84a6fc377cef8f30be61b5a711faf7c1
pkgname = xremap-x11-bin

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
pkg/
src/
xremap-*

17
PKGBUILD Normal file
View file

@ -0,0 +1,17 @@
# Maintainer: njkevlani <njkevlani@gmail.com>
pkgname=xremap-x11-bin
pkgver=0.2.3
pkgrel=1
pkgdesc='Dynamic key remapper for X11 and Wayland'
url='https://github.com/k0kubun/xremap'
source_x86_64=("https://github.com/k0kubun/xremap/releases/download/v$pkgver/xremap-linux-x86_64-x11.zip")
arch=('x86_64')
license=('MIT')
provides=('xremap')
sha256sums_x86_64=('6aca43feaad710a5acc9075f77588edf84a6fc377cef8f30be61b5a711faf7c1')
package() {
cd "$srcdir/"
install -Dm755 xremap "${pkgdir}/usr/bin/xremap"
}