diff options
author | HMH | 2020-06-08 18:26:23 +0200 |
---|---|---|
committer | HMH | 2020-06-08 18:26:23 +0200 |
commit | 3fde47193ce275af108de996d3e7d335a2f23fa5 (patch) | |
tree | e01c8ba1eabf17f4d5e8c35af80d63db17096afe | |
parent | 8fe4e4d9a0dad8e0a68a115a33f68c7ae10a11c9 (diff) | |
download | aur-3fde47193ce275af108de996d3e7d335a2f23fa5.tar.gz |
Fix problems namcap reported.
-rw-r--r-- | .SRCINFO | 9 | ||||
-rw-r--r-- | PKGBUILD | 8 |
2 files changed, 12 insertions, 5 deletions
@@ -1,10 +1,15 @@ pkgbase = weylus-bin pkgdesc = Weylus - Use your tablet as graphic tablet/touch screen on your computer. pkgver = 0.6.1 - pkgrel = 1 + pkgrel = 2 url = https://github.com/H-M-H/Weylus arch = x86_64 - license = AGPL-3.0-or-later + license = AGPL3 + depends = libxtst + depends = glu + depends = libxcursor + depends = libxinerama + depends = libxft source = https://github.com/H-M-H/Weylus/releases/download/v0.6.1/linux.zip sha256sums = e58133f11dd14adbdefb586cdb456f732c977f96d3d7e5fa1b8783dfa0ad5c1e @@ -2,14 +2,16 @@ pkgname=weylus-bin pkgver=0.6.1 -pkgrel=1 +pkgrel=2 pkgdesc="Weylus - Use your tablet as graphic tablet/touch screen on your computer." arch=('x86_64') url="https://github.com/H-M-H/Weylus" -license=('AGPL-3.0-or-later') +license=('AGPL3') source=("https://github.com/H-M-H/Weylus/releases/download/v$pkgver/linux.zip") sha256sums=('e58133f11dd14adbdefb586cdb456f732c977f96d3d7e5fa1b8783dfa0ad5c1e') package() { - install -vDm755 weylus "$pkgdir/usr/local/bin/weylus" + install -vDm755 weylus "$pkgdir/usr/bin/weylus" } + +depends=(libxtst glu libxcursor libxinerama libxft) |