Received: from mail-wr1-f66.google.com (mail-wr1-f66.google.com [209.85.221.66]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 0F29F782B37 for <~alpine/aports@lists.alpinelinux.org>; Sun, 12 Jan 2020 10:35:37 +0000 (UTC) Received: by mail-wr1-f66.google.com with SMTP id j42so5695872wrj.12 for <~alpine/aports@lists.alpinelinux.org>; Sun, 12 Jan 2020 02:35:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:subject:message-id:in-reply-to:references:mime-version :content-transfer-encoding; bh=/IBa8HUB2apw4b2l5LoRbvcBOXQa5YuVnahKeNl6OuY=; b=TrAXRG49xp40orKofFAI+uOqpM7EoNAFnlwcwnAxkg764ZMipr8dpOx5EY0aXQdwKh 95zfR4PkIow0yhj1gCltyCqupsd/kIazgp6N0H0nFv7jbc68JK8r99yQ1vWgsAmE6vFg DVUTHYwN+BWi1sDGhLGTWCB0m5Xi+4uxZlpWEz/uUEXaTRxHGyovUTTV8eD5UP3HonZb n52G/gWRqdmvnZUnmI1NJ6MsNlYsibT/tZXYsUYy9mhW3WwGXgwaQqxBCu/WuFdwvug0 AF5Akqkmi0lmHVyRdNMtmfqPISv4hwjSdJ4h8XoV5K7VCoKBspqqjvwo/n7KlP0gGWov +BPw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=/IBa8HUB2apw4b2l5LoRbvcBOXQa5YuVnahKeNl6OuY=; b=dPq4rxsxaBni7ubBApAldjHKJUivWG03eaMMe/ubQa9nBH6kpQLVHyyx0hOn9zOE+r td2oQpPsot3oJtKDAnE5UY+gynF04F+nNsFJZflBS7P7j/eDWD9W1Dgi+hCeHjV6dMdj LFEbRvhqjU2VRQUBX12Vfr8X4L8WZE68U+OkZVCS9YiefgDOLrrQk7MsUhviJVDs48cj 5y6iEFuCRPRdraZcajepeS0pWf7s9R7dWIkyl6ZMLzE0YakXRGNkFjHr0pBhF9W/CV8R guJKsRVWcdW1cT5jb/K35ViYE9wJA2iYw9jDqxu3l4WhcGpX0LNVUKnuTTndDXJtc/mz hgAw== X-Gm-Message-State: APjAAAWdTUBdpvrSFqBN9tmnbtb6ewpPZFB8CSceiYGPhRQpl+NSnrhQ Ujx1TVDc4ZpsWBYHu9e6bSbK1WUp3tA= X-Google-Smtp-Source: APXvYqxZ01ykDnydHauEWPhlKo80hrzL/RS1ZMBhppOTzQzmsZx/Ly9fh223RWYlVxak+SuB/vNOlw== X-Received: by 2002:a5d:49c7:: with SMTP id t7mr12523435wrs.369.1578825335975; Sun, 12 Jan 2020 02:35:35 -0800 (PST) Received: from enterprise ([2a02:8070:2786:ee00:3c78:2ac7:ceb3:8334]) by smtp.gmail.com with ESMTPSA id o1sm9983893wrn.84.2020.01.12.02.35.35 for <~alpine/aports@lists.alpinelinux.org> (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 12 Jan 2020 02:35:35 -0800 (PST) Date: Sun, 12 Jan 2020 11:35:31 +0100 From: Leo To: ~alpine/aports@lists.alpinelinux.org Subject: Re: [PATCH] testing/tiled: new aport Message-ID: <20200112113531.584802be@enterprise> In-Reply-To: <20200112093125.18749-1-markand@malikania.fr> References: <20200112093125.18749-1-markand@malikania.fr> X-Mailer: Claws Mail 3.17.4 (GTK+ 2.24.32; x86_64-alpine-linux-musl) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Sun, 12 Jan 2020 10:31:25 +0100 David Demelier wrote: > http://mapeditor.org > A powerful tile map editor > --- > testing/tiled/APKBUILD | 33 +++++++++++++++++++++++++++++++++ > 1 file changed, 33 insertions(+) > create mode 100644 testing/tiled/APKBUILD > > diff --git a/testing/tiled/APKBUILD b/testing/tiled/APKBUILD > new file mode 100644 > index 0000000000..09e4875e1e > --- /dev/null > +++ b/testing/tiled/APKBUILD > @@ -0,0 +1,33 @@ > +# Contributor: David Demelier > +# Maintainer: David Demelier > +pkgname="tiled" > +pkgver="1.3.1" > +pkgrel=0 > +pkgdesc="A powerful tile map editor" > +url="http://mapeditor.org" > +arch="all" > +license="Apache-2.0 BSD-2-Clause GPL-2.0-only" > +depends="qt5-qtbase > + qt5-qtdeclarative > + zlib" I think only qt5-declarative is required, the others can be removed. > +makedepends="qt5-qtbase-dev > + qt5-qtdeclarative-dev > + zlib-dev" Have them all on the same line, if you really want them on a line each have 1 tab of indentation. > +source="${pkgname}-${pkgver}.tar.gz::https://github.com/bjorn/tiled/archive/v${pkgver}.tar.gz" Unnecessary usage of brackets. > +builddir="$srcdir/$pkgname-$pkgver" Default value, can be removed. > + > +build() { > + qmake-qt5 -r INSTALL_HEADERS=yes PREFIX=/usr > + make > +} > + > +check() { > + tiled --version > +} Have a proper testsuite running or pass options="!check" > + > +package() { > + make install INSTALL_ROOT="$pkgdir" > +} > + > +sha512sums="b2ed5c0ff043990177809873417e31e8ee2894473b3084d0302e5557c19043c1763cf55d8ade16335ba3d64e7b4b903dd5fb88fd4bcf878c7c4d873bc9c7ed73 > tiled-1.3.1.tar.gz"