pmaports/main/hwtest/APKBUILD
Minecrell a85db1dc7b
*: remove "Contributor:" lines from APKBUILDs (MR 1203)
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
2020-05-02 21:45:25 +03:00

21 lines
740 B
Text

# Maintainer: Martijn Braam <martijn@brixit.nl>
pkgname=hwtest
pkgver=0.6.0
pkgrel=2
pkgdesc="Small utility to check hardware functionality on phones"
url="https://gitlab.com/MartijnBraam/hwtest"
arch="noarch"
license="MIT"
depends="python3 py3-dbus py3-setuptools ffmpeg v4l-utils evtest alsa-utils"
makedepends="python3-dev"
source="$pkgname-$pkgver.tar.gz::https://gitlab.com/MartijnBraam/hwtest/-/archive/$pkgver/hwtest-$pkgver.tar.gz"
options="!check" # No tests
build() {
python3 setup.py build
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="a59df174d7c8e6c57620065166b73720283e8232355d960830db6a554dff3b19a99c06f235a4d4edf6631beda70c17df904505e5209c93eca6dbd02fc47c0529 hwtest-0.6.0.tar.gz"