aboutsummaryrefslogtreecommitdiffstats
path: root/community/qutebrowser/APKBUILD
blob: 95e5b593967f1bb31b54e88689ff39641d4bcd62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Contributor: Leo <thinkabit.ukim@gmail.com>
# Maintainer: Drew DeVault <sir@cmpwn.com>
pkgname=qutebrowser
pkgver=1.13.0
pkgrel=0
pkgdesc="A keyboard-driven, vim-like browser based on PyQT5"
url="https://qutebrowser.org/"
arch="noarch !s390x !ppc64le !armhf !mips !mips64" # Blocked on mips, s390x and ppc64le by qt5-qtwebengine, on armhf by py3-qt5 -> qt5-qtdeclarative-dev
license="GPL-3.0-only"
depends="
	py3-attrs py3-jinja2 py3-pygments py3-pypeg2 py3-qt5 py3-yaml qt5-qtbase
	qt5-qtwebengine qt5-qtbase-sqlite py3-qtwebengine py3-setuptools
	py3-sip-pyqt5
"
makedepends="asciidoc"
checkdepends="py3-pytest py3-hypothesis"
subpackages="$pkgname-doc"
source="
	https://github.com/qutebrowser/qutebrowser/releases/download/v$pkgver/qutebrowser-$pkgver.tar.gz
"
options="!check" # https://github.com/qutebrowser/qutebrowser/issues/5081

build() {
	a2x -f manpage doc/qutebrowser.1.asciidoc
	python3 setup.py build
}

check() {
	pytest-3
}

package() {
	make -f misc/Makefile DESTDIR="$pkgdir" PREFIX=/usr install
}

sha512sums="ee598db9416e4efcf5d8bc6aaa3d373637ed67f181e67e56c04fd7f2c12ebaf185f67a9463fff195d74ff7a239ce0a88c24bf35d3ad627116e2fa5ebed973d3d  qutebrowser-1.13.0.tar.gz"