a85db1dc7b
At the moment we have Contributor: lines on some packages (but not all of them), but often they don't represent the actual contributors to the package very well. E.g. when we added them retroactively to the device packages we only added the initial contributor (which isn't necessarily the person who made most of the work for a device...) The Git history is the most representative source for figuring out who contributed to a package, so there is no reason to duplicate that into the APKBUILD. [skip ci]: way too many packages
23 lines
727 B
Text
23 lines
727 B
Text
# Maintainer: Craig Comstock <craig@unreasonablefarm.org>
|
|
pkgname=gesture
|
|
pkgver=0.1
|
|
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"
|
|
makedepends="linux-headers"
|
|
install="$pkgname.post-install $pkgname.pre-deinstall"
|
|
options="!check"
|
|
source="https://gitlab.com/unrznbl/gesture/-/archive/v$pkgver/gesture-v$pkgver.tar.gz"
|
|
builddir="$srcdir/gesture-v$pkgver"
|
|
|
|
build() {
|
|
make all
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="bb06d5579883e441087c1162c06fabde8051efa9cf4d5327983d589d86f94a11d3d1075b49d81aa042cf0c064f7ae403f1ce607535814d316316cd42ebc1d512 gesture-v0.1.tar.gz"
|