45 lines
1.6 KiB
Bash
45 lines
1.6 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobextra/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=xorg-xinput
|
|
pkgver=1.6.4
|
|
pkgrel=01
|
|
pkgdesc="Small commandline tool to configure devices"
|
|
url="https://xorg.freedesktop.org/"
|
|
depends=('libx11' 'libxi>=1.5.99.2' 'xorg-xrandr' 'libxinerama')
|
|
makedepends=('xorg-util-macros' 'xorgproto' 'libxfixes')
|
|
groups=('xorg-apps' 'xorg')
|
|
source=(https://xorg.freedesktop.org/archive/individual/app/xinput-${pkgver}.tar.xz{,.sig})
|
|
|
|
build() {
|
|
cd xinput-${pkgver}
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd xinput-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
|
|
}
|
|
|
|
#---- arch license gpg-key & sha256sums ----
|
|
|
|
arch=(x86_64)
|
|
|
|
license=('custom')
|
|
|
|
validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # "Peter Hutterer (Who-T) <office@who-t.net>"
|
|
|
|
sha512sums=('6734860852715e5cb9d26259a173e42413fc037546ed7fa4173ffa802c2619ee0322bed228a28cd1911be759d860070867d9b89b115f37323cca1c9ef75354b9'
|
|
'SKIP')
|
|
|
|
sha256sums=(ad04d00d656884d133110eeddc34e9c69e626ebebbbab04dc95791c2907057c8 # xinput-1.6.4.tar.xz
|
|
243b1829e859b9a0f503593f5e3aac9d4fa21607b89ee04b54be7ef35dd4ee5c) # xinput-1.6.4.tar.xz.sig
|
|
|
|
## f8b459b07d3ada5721a1521a676033c870e2a3a885ec0fe1afb3cf3623be9b25 xorg-xinput-1.6.4-01-x86_64.pkg.tar.lz
|