X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx2.mailbox.org (mx2.mailbox.org [80.241.60.215]) by lists.alpinelinux.org (Postfix) with ESMTP id 0CD105C4CEC for ; Thu, 21 Sep 2017 16:47:28 +0000 (GMT) Received: from smtp1.mailbox.org (smtp1.mailbox.org [80.241.60.240]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx2.mailbox.org (Postfix) with ESMTPS id D946C498F4; Thu, 21 Sep 2017 18:47:26 +0200 (CEST) X-Virus-Scanned: amavisd-new at heinlein-support.de Received: from smtp1.mailbox.org ([80.241.60.240]) by hefe.heinlein-support.de (hefe.heinlein-support.de [91.198.250.172]) (amavisd-new, port 10030) with ESMTP id KFyRbwUiGLm7; Thu, 21 Sep 2017 18:47:25 +0200 (CEST) Date: Thu, 21 Sep 2017 09:47:22 -0700 From: Clayton Craft To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] testing/tslib: new aport Message-ID: <20170921164722.GA3@computer.craftyguy.net> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline https://github.com/kergoth/tslib tslib is a touchscreen access library --- testing/tslib/APKBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 testing/tslib/APKBUILD diff --git a/testing/tslib/APKBUILD b/testing/tslib/APKBUILD new file mode 100644 index 0000000000..e1c56237f3 --- /dev/null +++ b/testing/tslib/APKBUILD @@ -0,0 +1,30 @@ +# Contributor: Clayton Craft +# Maintainer: Clayton Craft +pkgname=tslib +pkgver=1.13 +pkgrel=0 +pkgdesc="Touchscreen Access Library" +arch="all" +url="https://github.com/kergoth/tslib" +license="GPL2" +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" -- 2.14.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---