X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-lf0-f49.google.com (mail-lf0-f49.google.com [209.85.215.49]) by lists.alpinelinux.org (Postfix) with ESMTP id 986A75C4DDE for ; Wed, 10 Jan 2018 14:19:30 +0000 (GMT) Received: by mail-lf0-f49.google.com with SMTP id h5so20029008lfj.2 for ; Wed, 10 Jan 2018 06:19:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=JBUk5ahNG4xDsOoynQWlQKUUiEYOvj807bK1azgx9zU=; b=CD9O6K48L2GT4AnhnxRe6qdICILSTbxtPgIYFfBqaCbJ+KNBmiJVdR1PMl+G8t4HFw CZn+tduTDokOJ1b/MDtK3icxKZOYU4+r+WlPuDl9oH8vQfNhp0Taok3VwYDQl2oCxS4c ZQQMd4F8o+9Va4txsni0t8HQgAL9RQV920am6X/hTNShsEnRMFlGTmYWyxj8AJTHvsAS YE/sh3vadFewFGeMlCD825quyL0XJQSXV70KfnXAfTWS7U2ut4hR4vHMsiueAqILXJKV 1jgxvxEPvdILfgoFOZ8WPrkCgRMXLOEzrxVIxb32BtX1p6Cq/KZf3Xj8cKP/FlkMpfru JC+g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=JBUk5ahNG4xDsOoynQWlQKUUiEYOvj807bK1azgx9zU=; b=gGXjBCRg4nlADA6MGAFWWPhpG8CozoCQkZ5aUt0MV4MgVgi6PooSp5btXUy34pAa7/ BA9goXYwjV/WVsA44dk1429dFBSNLo2H70Uwurli/38B5DzwYLLL3gkijRZA6DFuOEpl BW2e2unRIPnJxDQLSD15bqkTAgaANb2M+cm+teFKlYfFiYa2vL1ObRrO0xgt33YdIXjo dDEJOYEh8csoe531TQXRUBgfPi0z8iM0tirLhizB7Ge6g88U1WmpvZDXvOXB8oP9h7bS 4P9ZcZqjwlI2JPUGI4qG4/JRo9AIhJ07vn7vhdCXppjz7EjK1WhqC57vAkIJKg6lob1x iGCA== X-Gm-Message-State: AKwxytdTppNMkK0toCPLWgBeTHSPLQlalOvpkMINjLHJQAngYIcOkZKR ncExF4zsKpqdqW833+vAe/Lx42iXzaLybCFKCnA= X-Google-Smtp-Source: ACJfBotskmMASws5/cdUS5exzAvYLIuczA95Q2H8FX35d7AV/u0AVulvHBSPU2sn8aaAmuLEJGn9D5LJDb8SHRAn7lw= X-Received: by 10.46.5.3 with SMTP id 3mr12150674ljf.122.1515593969160; Wed, 10 Jan 2018 06:19:29 -0800 (PST) X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Received: by 10.25.59.212 with HTTP; Wed, 10 Jan 2018 06:19:28 -0800 (PST) In-Reply-To: <20170921164722.GA3@computer.craftyguy.net> References: <20170921164722.GA3@computer.craftyguy.net> From: Leonardo Arena Date: Wed, 10 Jan 2018 15:19:28 +0100 Message-ID: Subject: Re: [alpine-aports] testing/tslib: new aport To: Clayton Craft Cc: alpine-aports Content-Type: multipart/alternative; boundary="001a114a7a1627d52e05626cb8eb" --001a114a7a1627d52e05626cb8eb Content-Type: text/plain; charset="UTF-8" Hi, sorry for the delayed feedback. On Thu, Sep 21, 2017 at 6:47 PM, Clayton Craft wrote: > 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}" > Only "$srcdir" needs to be between brackets. Please omit also "{}". > + > +build() { > + ./autogen.sh > This needs to be moved into prepare(). > + ./configure --prefix=/usr --sysconfdir=/etc > + make > +} > + > +check() { > + cd "${builddir}" > "{}" aren't needed. > + make check > +} > + > +package() { > + cd "${builddir}" > Same here. Thanks /eo --001a114a7a1627d52e05626cb8eb Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
Hi,

sorry for the delayed feedback.
<= div>

On Thu, Sep 2= 1, 2017 at 6:47 PM, Clayton Craft <clayton@craftyguy.net> wrote:
https://github.com/kergot= h/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 <clayton@craftyguy.net>
+# Maintainer: Clayton Craft <clayton@craftyguy.net>
+pkgname=3Dtslib
+pkgver=3D1.13
+pkgrel=3D0
+pkgdesc=3D"Touchscreen Access Library"
+arch=3D"all"
+url=3D"https://github.com/kergoth/tslib"
+license=3D"GPL2"
+makedepends=3D"autoconf automake libtool linux-headers"
+source=3D"https://github.com/kergoth/tslib/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.xz"
+subpackages=3D"$pkgname-dev $pkgname-doc"
+builddir=3D"${srcdir}/${pkgname}-${pkgver}"

Only "$srcdir" needs to be between brackets.= Please omit also "{}".
=C2=A0
+
+build() {
+=C2=A0 =C2=A0 ./autogen.sh

This needs = to be moved into prepare().
=C2=A0
+=C2=A0 =C2=A0 ./configure --prefix=3D/usr --sysconfdir=3D/etc
+=C2=A0 =C2=A0 make
+}
+
+check() {
+=C2=A0 =C2=A0 cd "${builddir}"

"{}" aren't needed.

=C2=A0
+=C2=A0 =C2=A0 make check
+}
+
+package() {
+=C2=A0 =C2=A0 cd "${builddir}"

Same here.
=C2=A0
Thanks

/eo<= br>
--001a114a7a1627d52e05626cb8eb-- --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---