mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-21 00:21:37 +01:00
http://www.pberndt.com/Programme/Linux/pqiv/index.html powerful image viewer with minimal UI
35 lines
967 B
Plaintext
35 lines
967 B
Plaintext
# Contributor: Sascha Paunovic <azarus@posteo.net>
|
|
# Maintainer: Sascha Paunovic <azarus@posteo.net>
|
|
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" # no testsuites
|
|
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"
|