[4.3] qubes-input-proxy: new aport #68
1 changed files with 41 additions and 0 deletions
41
qubes-input-proxy/APKBUILD
Normal file
41
qubes-input-proxy/APKBUILD
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
# Contributor: Antoine Martin (ayakael) <dev@ayakael.net>
|
||||||
|
# Maintainer: Antoine Martin (ayakael) <dev@ayakael.net>
|
||||||
|
pkgname=qubes-input-proxy
|
||||||
|
pkgver=1.0.37
|
||||||
|
_gittag=v$pkgver
|
||||||
|
pkgrel=0
|
||||||
|
pkgdesc="The Qubes service for proxying input devices"
|
||||||
|
arch="x86_64"
|
||||||
|
url="http://qubes-os.org/"
|
||||||
|
license='GPL'
|
||||||
|
depends="
|
||||||
|
usbutils
|
||||||
|
qubes-vm-core
|
||||||
|
"
|
||||||
|
makedepends="linux-headers"
|
||||||
|
source="$pkgname-$_gittag.tar.gz::https://github.com/QubesOS/qubes-app-linux-input-proxy/archive/refs/tags/$_gittag.tar.gz"
|
||||||
|
builddir="$srcdir"/qubes-app-linux-input-proxy-$pkgver
|
||||||
|
|
||||||
|
build() {
|
||||||
|
make all \
|
||||||
|
LIBDIR=/usr/lib \
|
||||||
|
USRLIBDIR=/usr/lib \
|
||||||
|
SYSLIBDIR=/usr/lib
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
make install-vm \
|
||||||
|
DESTDIR="$pkgdir" \
|
||||||
|
LIBDIR=/usr/lib \
|
||||||
|
USRLIBDIR=/usr/lib \
|
||||||
|
SYSLIBDIR=/usr/lib
|
||||||
|
|
||||||
|
# replace all shebangs with /bin/sh as qubes expects bash
|
||||||
|
# shellcheck disable=SC2013
|
||||||
|
for i in $(grep '/bin/sh' -Rl "$pkgdir"); do
|
||||||
|
sed -i 's|/bin/sh|/bin/bash|' "$i"
|
||||||
|
done
|
||||||
|
}
|
||||||
|
sha512sums="
|
||||||
|
0abe75960531c96f2760a462710de2d5e54d95792d719e42d7ae7e2a22b586e4573835584df74ba288e761ed64149f6a951c19301039cf3293621b4032085292 qubes-input-proxy-v1.0.37.tar.gz
|
||||||
|
"
|
Loading…
Reference in a new issue