diff options
author | Clayton Craft <clayton@craftyguy.net> | 2017-09-28 18:09:36 -0700 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2017-10-01 07:23:54 +0000 |
commit | f12d98d4e03bf664864438ac113490a70a503e8e (patch) | |
tree | 671015cca459fe2d9eaffd7c526745ef0973b35c /testing/tslib | |
parent | abc299ea3a1cb5bc5e041295ff7cf10255597c04 (diff) | |
download | aports-f12d98d4e03bf664864438ac113490a70a503e8e.tar.bz2 aports-f12d98d4e03bf664864438ac113490a70a503e8e.tar.xz |
testing/tslib: new aport
https://github.com/kergoth/tslib
tslib is a touchscreen access library
Diffstat (limited to 'testing/tslib')
-rw-r--r-- | testing/tslib/APKBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/testing/tslib/APKBUILD b/testing/tslib/APKBUILD new file mode 100644 index 0000000000..353fb5f4fb --- /dev/null +++ b/testing/tslib/APKBUILD @@ -0,0 +1,30 @@ +# Contributor: Clayton Craft <clayton@craftyguy.net> +# Maintainer: Clayton Craft <clayton@craftyguy.net> +pkgname=tslib +pkgver=1.13 +pkgrel=0 +pkgdesc="Touchscreen Access Library" +arch="all" +url="https://github.com/kergoth/tslib" +license="LGPL2+" +makedepends="autoconf automake libtool linux-headers" +source="https://github.com/kergoth/tslib/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.xz" +subpackages="$pkgname-dev $pkgname-doc" +builddir="${srcdir}/${pkgname}-${pkgver}" + +build() { + ./autogen.sh + ./configure --prefix=/usr --sysconfdir=/etc + make +} + +check() { + cd "${builddir}" + make check +} + +package() { + cd "${builddir}" + make DESTDIR="${pkgdir}" install +} +sha512sums="d96756576f2ffbc075bbe450a7a616cea9b0de97ef6ccb7868a237e7da6855af3eb47e13afd1ad4d82cf165628d5c3c45def7e07ae606a561bee5e7445cf5366 tslib-1.13.tar.xz" |