2014-05-08 22:08:04 +02:00
|
|
|
# Maintainer: Florian Bruhin (The Compiler) <archlinux.org@the-compiler.org>
|
2014-06-19 09:04:37 +02:00
|
|
|
# vim: set ts=2 sw=2 et:
|
2014-05-08 22:08:04 +02:00
|
|
|
|
|
|
|
pkgname=qutebrowser-git
|
|
|
|
pkgver=
|
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="A keyboard-driven, vim-like browser based on PyQt5 and QtWebKit.",
|
|
|
|
arch=(any)
|
|
|
|
url="http://www.qutebrowser.org/"
|
|
|
|
license=('GPL')
|
2014-07-28 20:41:42 +02:00
|
|
|
depends=('python>=3.4' 'python-setuptools' 'python-pyqt5>=5.2' 'qt5-base>=5.2'
|
2014-09-15 17:59:33 +02:00
|
|
|
'qt5-webkit>=5.2' 'libxkbcommon-x11' 'python-pypeg2' 'python-jinja'
|
|
|
|
'python-pygments')
|
2014-05-08 22:08:04 +02:00
|
|
|
makedepends=('python' 'python-setuptools')
|
2014-06-24 07:42:49 +02:00
|
|
|
optdepends=('python-colorlog: colored logging output')
|
2014-05-08 22:08:04 +02:00
|
|
|
options=(!emptydirs)
|
|
|
|
source=('qutebrowser::git://the-compiler.org/qutebrowser')
|
|
|
|
md5sums=('SKIP')
|
|
|
|
|
|
|
|
pkgver() {
|
|
|
|
cd "$srcdir/qutebrowser"
|
|
|
|
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "$srcdir/qutebrowser"
|
|
|
|
python setup.py install --root="$pkgdir/" --optimize=1
|
|
|
|
}
|