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 6BAB75C5205 for ; Wed, 4 Jul 2018 09:33:33 +0000 (GMT) Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 3BC8F20F58 for ; Wed, 4 Jul 2018 11:33:32 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1530696812; bh=BthgY+daB5ZwYq+pDd7oPDYfNBwULvKwLrD8foou130=; h=From:To:Cc:Subject:Date:From; b=hX0ASvP5lrlLe3W13FSboeBI+NkFF/x3UDyV7+dGuZnrPMRcDjqPaxqsNuCR2nEDI fqJyli8vhgJruWjym69pLANclJIWQfIn+uMp740l0IeLQtU8fowhISrwQN1TeUYksY CDW7kajr+qqyjlX5IEtGu9UDiSouYcmxN5IvGU4YtPMM1eFp6fkYTNib9C1Gu8sQoQ wCjgSg1RaJWtp5kMOa2wddPl1aoQqe7uokMxSnoQBQNIxILU5ozVOKxBItMUbPQNrc UENtpoGS6RkSBp662XCUJ8mPd3DOyDfOrUAKiptrpTmoZietRv2tGJU+R0k/7izIWE ajlvFqnZ0kvGA== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 41LG5725xGz9rxD; Wed, 4 Jul 2018 11:33:31 +0200 (CEST) From: Sascha Paunovic To: alpine-aports@lists.alpinelinux.org Cc: Sascha Paunovic Subject: [alpine-aports] [PATCH] testing/pqiv: new aport Date: Wed, 4 Jul 2018 11:33:28 +0200 Message-Id: <20180704093328.13799-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: http://www.pberndt.com/Programme/Linux/pqiv/index.html powerful image viewer with minimal UI --- testing/pqiv/APKBUILD | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 testing/pqiv/APKBUILD diff --git a/testing/pqiv/APKBUILD b/testing/pqiv/APKBUILD new file mode 100644 index 0000000000..868099c835 --- /dev/null +++ b/testing/pqiv/APKBUILD @@ -0,0 +1,34 @@ +# Contributor: Sascha Paunovic +# Maintainer: Sascha Paunovic +pkgname=pqiv +pkgver=2.10.4 +pkgrel=0 +pkgdesc="powerful image viewer with minimal UI" +url="http://www.pberndt.com/Programme/Linux/pqiv/index.html" +arch="all" +license="GPL-3.0-only" +makedepends="autoconf gtk+3.0-dev glib-dev cairo-dev libwebp-dev libspectre-dev + bash" +subpackages="$pkgname-doc" +source="$pkgname-$pkgver.tar.gz::https://github.com/phillipberndt/$pkgname/archive/$pkgver.tar.gz" +options="!check" +builddir="$srcdir/$pkgname-$pkgver" + +build() { + cd "$builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="52534ed4728466b7c710db65115d7e79ad97546750946fa5c3a26b65055387b15c6239fdf1bb8c8345fe7ed2dfc7ed5586ffa2a864de44fd8213cff59f76048a pqiv-2.10.4.tar.gz" -- 2.18.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---