X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx1.riseup.net (mx1.riseup.net [198.252.153.129]) by lists.alpinelinux.org (Postfix) with ESMTP id 339C65C5101 for ; Thu, 16 Mar 2017 15:26:19 +0000 (GMT) Received: from piha.riseup.net (unknown [10.0.1.163]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id E9AFF1A201D for ; Thu, 16 Mar 2017 15:26:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1489677979; bh=qVR6OWYXartQYj+CUHTVygyrMhJ6oVOjzhyz6eSgPB8=; h=From:To:Subject:Date:From; b=sNS8hVoUVEbcLndei0zmbpih97XJrlrxY+Ae0PbG/G6YBJk86r58nA1CkHomxPqSf BG9zvY9gIsk0dFG3VGM3L2GStZ6LkmaNDy/olMmDr/18Chuq7ubcunJuaBrAshgY7H 8miTEhyvXIL3l/wM6cKDt3Sv7/gAfb9DshjsZzxg= Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: pickfire) with ESMTPSA id 02FC71C0272 From: Ivan Tham To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 1/2] testing/xf86-input-wacom: new aport Date: Thu, 16 Mar 2017 23:25:36 +0800 Message-Id: <20170316152537.10567-1-pickfire@riseup.net> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: http://linuxwacom.sourceforge.net/ X.org Wacom tablet input driver --- This is duplicated https://github.com/alpinelinux/aports/pull/1020/commits/4e89e08a48d9adfdc4bd17cf75a229bcb3f13ef1 testing/xf86-input-wacom/APKBUILD | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 testing/xf86-input-wacom/APKBUILD diff --git a/testing/xf86-input-wacom/APKBUILD b/testing/xf86-input-wacom/APKBUILD new file mode 100644 index 00000000..2feeafdc --- /dev/null +++ b/testing/xf86-input-wacom/APKBUILD @@ -0,0 +1,35 @@ +# Contributor: Ivan Tham +# Maintainer: Ivan Tham +pkgname=xf86-input-wacom +pkgver=0.34.2 +pkgrel=0 +pkgdesc="X.org Wacom tablet input driver" +url="http://linuxwacom.sourceforge.net/" +arch="all" +license="GPL2" +depends="" +makedepends="xorg-server-dev libxext-dev libxi-dev libxrandr-dev + libxinerama-dev eudev-dev" +checkdepends="bash findutils" +install="" +subpackages="$pkgname-dev $pkgname-doc" +source="https://downloads.sourceforge.net/project/linuxwacom/$pkgname/$pkgname-$pkgver.tar.bz2" +builddir="$srcdir/"$pkgname-$pkgver + +build() { + cd "$builddir" + ./configure --prefix=/usr || return 1 + make || return 1 +} + +check() { + cd "$builddir" + make check || return 1 +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +sha512sums="882a72c90838ad0cba1386629ac307adac69ed30d7bd3dcbd0cfa5d80c177eceeb09675eda45f01c61e726136f894bb3dda3f2b9b4b195287b6fcb4b00214c8e xf86-input-wacom-0.34.2.tar.bz2" -- 2.11.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---