X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mout01.posteo.de (mout01.posteo.de [185.67.36.65]) by lists.alpinelinux.org (Postfix) with ESMTP id 3D6C15C5161 for ; Thu, 28 Jun 2018 13:22:28 +0000 (GMT) Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 533B121292 for ; Thu, 28 Jun 2018 15:22:13 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1530192133; bh=W4JIbckUYkAeo3E1y6qx4axbwTOw1LwskBk8vbpkybY=; h=From:To:Cc:Subject:Date:From; b=kAqhkt9QaBIlXhZ8Kb3vOK3c/HGASLYEeQRxxcFhp96dJ3RCYtvcVVZZYEjRCRiQC fnlQ9IU4+FfNrOZ3K8mlQZUlrUG16fjFzhOadf8T2qDArsqGy9EXBAj9dhFsH4c3PX j+KU5JU3DNDGjLq5YSWagRvh1Oc7CUw2/q7QoeHLPYmXhRb5VX8radDZ6Y+G/oMWSq lD+5aEYR6bpeDZAPSqG35TxY9IS7mlHJb/KAJgre7n6eM/knooXe7yLCgVfFOWJOhG cwROrAhcuCrqFo8UNHS4CHS/dNwKBWFmbhvHA0zSHA10xbEatPUawYuvf34nJC4vrX zDnA4Pn1PGSUg== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 41GgRJ2N0Nz9rxY; Thu, 28 Jun 2018 15:21:48 +0200 (CEST) From: Sascha Paunovic To: alpine-aports@lists.alpinelinux.org Cc: Sascha Paunovic Subject: [alpine-aports] [PATCH] testing/arc-theme: improve abuild Date: Thu, 28 Jun 2018 15:21:46 +0200 Message-Id: <20180628132146.22277-1-azarus@posteo.net> X-Mailer: git-send-email 2.18.0 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: also take maintainership --- testing/arc-theme/APKBUILD | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/testing/arc-theme/APKBUILD b/testing/arc-theme/APKBUILD index af9a3f6228..a23481810a 100644 --- a/testing/arc-theme/APKBUILD +++ b/testing/arc-theme/APKBUILD @@ -1,5 +1,5 @@ # Contributor: Carlo Landmeter -# Maintainer: +# Maintainer: Sascha Paunovic pkgname=arc-theme pkgver=20170302 pkgrel=0 @@ -9,10 +9,9 @@ arch="noarch" license="GPL-3.0" depends="gtk-murrine-engine" makedepends="automake autoconf libtool gtk+3.0-dev" -install="" -subpackages="" source="arc-theme-$pkgver.tar.gz::https://github.com/horst3180/arc-theme/archive/$pkgver.tar.gz" -builddir="$srcdir/arc-theme-$pkgver" +options="!check" # no test suite +builddir="$srcdir/$pkgname-$pkgver" build() { cd "$builddir" @@ -29,13 +28,12 @@ build() { --disable-cinnamon \ --disable-gnome-shell \ --disable-metacity \ - return 1 - make || return 1 + make } package() { cd "$builddir" - make DESTDIR="$pkgdir" install || return 1 + make DESTDIR="$pkgdir" install } sha512sums="99408a7c4db2bd2d81453e308ae5d9bc9bfda4f11e57191936f985de2937debff76c4d1f37a97ac8f5ad3751401ee8ad02457e4558b9c4aedc2bfeba1736ef03 arc-theme-20170302.tar.gz" -- 2.18.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---