X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mailauth4.nine.ch (mailauth4.nine.ch [94.230.211.190]) by lists.alpinelinux.org (Postfix) with ESMTP id 380EB5C51ED for ; Thu, 23 Mar 2017 13:57:51 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by mailauth4.nine.ch (Postfix) with ESMTP id 7ACEBBFA24; Thu, 23 Mar 2017 14:57:50 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mailauth4.nine.ch X-Spam-Flag: NO X-Spam-Score: -0.999 X-Spam-Level: X-Spam-Status: No, score=-0.999 tagged_above=-999 required=5.6 tests=[ALL_TRUSTED=-1, HEADER_FROM_DIFFERENT_DOMAINS=0.001] autolearn=disabled Received: from mailauth4.nine.ch ([127.0.0.1]) by localhost (mailauth4.nine.ch [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gZPxwNtTH24V; Thu, 23 Mar 2017 14:57:49 +0100 (CET) Received: from vimes (174.180.4.85.dynamic.wline.res.cust.swisscom.ch [85.4.180.174]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: pf@1042.ch) by mailauth4.nine.ch (Postfix) with ESMTPSA; Thu, 23 Mar 2017 14:57:49 +0100 (CET) Received: by vimes (Postfix, from userid 1000) id 523CE80259; Thu, 23 Mar 2017 14:57:49 +0100 (CET) From: Jean-Louis Fuchs To: alpine-aports@lists.alpinelinux.org Cc: Jean-Louis Fuchs Subject: [alpine-aports] [PATCH] testing/zathura-ps: remove returns, no check Date: Thu, 23 Mar 2017 14:57:46 +0100 Message-Id: <20170323135746.22383-1-ganwell@fangorn.ch> X-Mailer: git-send-email 2.11.1 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- testing/zathura-ps/APKBUILD | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/testing/zathura-ps/APKBUILD b/testing/zathura-ps/APKBUILD index 67e156e9af..4bb7e74aaf 100644 --- a/testing/zathura-ps/APKBUILD +++ b/testing/zathura-ps/APKBUILD @@ -3,7 +3,7 @@ # Maintainer: Jean-Louis Fuchs pkgname=zathura-ps pkgver=0.2.4 -pkgrel=0 +pkgrel=1 pkgdesc="zathura-ps - plugin adds PostScript support to zathura" url="https://pwmt.org/projects/$pkgname" arch="all" @@ -12,15 +12,17 @@ depends="zathura" makedepends="zathura-dev poppler-dev libspectre-dev" source="https://pwmt.org/projects/zathura-ps/download/zathura-ps-$pkgver.tar.gz" -_builddir="$srcdir"/$pkgname-$pkgver +options="!check" + +builddir="$srcdir/$pkgname-$pkgver" build() { - make -C "$_builddir" || return 1 + make -C "$builddir" } package() { make PREFIX=/usr DESTDIR="$pkgdir" \ - -C "$_builddir" install || return 1 + -C "$builddir" install } md5sums="553330eae86da48c0231f348181b9a82 zathura-ps-0.2.4.tar.gz" -- 2.11.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---