diff options
author | Drew DeVault <sir@cmpwn.com> | 2020-01-08 12:03:01 -0500 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-01-09 09:14:59 +0100 |
commit | dc271d205e30a1303b0fac3ff33cdaa68ead4688 (patch) | |
tree | b529617ae00b9f812509e1deb37b8d75d0f17cbb /community/qutebrowser | |
parent | 16d76204ec1fd752d7aed9be4d04536a40216726 (diff) | |
download | aports-dc271d205e30a1303b0fac3ff33cdaa68ead4688.tar.bz2 aports-dc271d205e30a1303b0fac3ff33cdaa68ead4688.tar.xz |
community/qutebrowser: move from testing
Diffstat (limited to 'community/qutebrowser')
-rw-r--r-- | community/qutebrowser/APKBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/community/qutebrowser/APKBUILD b/community/qutebrowser/APKBUILD new file mode 100644 index 0000000000..ec1034c3be --- /dev/null +++ b/community/qutebrowser/APKBUILD @@ -0,0 +1,35 @@ +# Maintainer: Drew DeVault <sir@cmpwn.com> +pkgname=qutebrowser +pkgver=1.9.0 +pkgrel=0 +pkgdesc="A keyboard-driven, vim-like browser based on PyQT5" +url="https://qutebrowser.org/" +arch="noarch !s390x !ppc64le !armhf" # Blocked on 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="70d69f588a6951bfb24cda9e46de5d2ebe10dd23fb62e233e0a59c1560d3c3a8e9674310f181001aca7a25f22a851459b1cdbb648e3c97f67137f1023fd282af qutebrowser-1.9.0.tar.gz" |