mirror of
https://github.com/archlinux/aur.git
synced 2026-03-05 13:33:01 +01:00
initial commit
This commit is contained in:
commit
7c00b29dc6
3 changed files with 32 additions and 0 deletions
12
.SRCINFO
Normal file
12
.SRCINFO
Normal 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
3
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
pkg/
|
||||
src/
|
||||
xremap-*
|
||||
17
PKGBUILD
Normal file
17
PKGBUILD
Normal 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"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue