mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 11:45:18 +03:00
28 lines
851 B
Text
28 lines
851 B
Text
# Contributor: David Demelier <markand@malikania.fr>
|
|
# Maintainer: David Demelier <markand@malikania.fr>
|
|
pkgname=vimiv-qt
|
|
pkgver=0.7.0
|
|
pkgrel=0
|
|
pkgdesc="an image viewer with vim-like keybindings"
|
|
url="https://github.com/karlch/vimiv-qt"
|
|
arch="all !armhf" # armhf blocked by py3-qt5 (qt5-qtdeclarative)
|
|
license="GPL-3.0-only"
|
|
depends="python3 py3-qt5"
|
|
makedepends="python3-dev py3-setuptools"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/karlch/vimiv-qt/archive/v$pkgver.tar.gz"
|
|
options="!check" # Not working yet.
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
package() {
|
|
make -f misc/Makefile DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="d73572bf2c9888290ea9889c13b099f72f0d4c379bd50ed26ca7f9af7d4a7d67e161caa0142145cb0dddaee80bb72714c8dab803e7090437ac43d1df26e10114 vimiv-qt-0.7.0.tar.gz"
|