From 807389d17824fefc3c0131ea3138be8049080355 Mon Sep 17 00:00:00 2001 From: Bart Ribbers Date: Mon, 6 Jan 2020 11:28:50 +0100 Subject: [PATCH] main/gesture: fix linting issues (!872) --- main/gesture/APKBUILD | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/main/gesture/APKBUILD b/main/gesture/APKBUILD index c499d7a3d..4467b5fb2 100644 --- a/main/gesture/APKBUILD +++ b/main/gesture/APKBUILD @@ -1,29 +1,23 @@ -# Contributor: Martijn Braam +# Contributor: Martijn Braam # Maintainer: Craig Comstock pkgname=gesture pkgver=0.1 -pkgrel=0 -pkgdesc="handwriting algorithm with implementation for linux touchscreens injecting keys into a tty." +pkgrel=2 +pkgdesc="handwriting algorithm with implementation for linux touchscreens injecting keys into a tty" url="https://gitlab.com/unrznbl/gesture" arch="all" license="GPL-3.0-only" -depends="" makedepends="linux-headers" install="$pkgname.post-install $pkgname.pre-deinstall" options="!check" -source=" - ${url}/-/archive/v${pkgver}/gesture-v${pkgver}.tar.gz -" -builddir="$srcdir"/gesture-v$pkgver +source="https://gitlab.com/unrznbl/gesture/-/archive/v$pkgver/gesture-v$pkgver.tar.gz" +builddir="$srcdir/gesture-v$pkgver" build() { - cd "$builddir" make all } package() { - mkdir -p $pkgdir - cd $builddir make DESTDIR="$pkgdir" install }