# Maintainer: Lukas Sabota # Contributor: Fabian Schoelzel # Contributor: mightyjaym # Contributor: Travis Nickles pkgname=qjoypad pkgver=4.3.0 pkgrel=1 pkgdesc='Program with a QT interface that converts gamepad/joystick events into key strokes and mouse actions in XWindows' arch=('i686' 'x86_64') url='https://github.com/panzi/qjoypad' license=('GPL') depends=('qt5-base' 'libxtst') install=${pkgname}.install source=("https://github.com/panzi/$pkgname/archive/v$pkgver.tar.gz") md5sums=('1e8084db56dacdb863ca5e5e40f0d640') package() { cd "${srcdir}/${pkgname}-${pkgver}/" mkdir -p build cd build cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release make make DESTDIR="$pkgdir/" install }