blob: bc6e6b722e28ab24f7e0373ff4c8533533ae2d8d (
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
|
# Maintainer: StevenDeFacto <srbatchelor@ovgl.org>
pkgname=zsurf-git
_pkgname=${pkgname%-*}
pkgver=0.1.0
pkgrel=1
pkgdesc="Ultra lightweight web browser in the spirit of Surf using QtWebEngine with front-end logic written in Javascript."
arch=('i686' 'x86_64')
url="https://github.com/SteveDeFacto/zsurf"
license=('GPL3')
makedepends=('git')
depends=('qt5-webengine')
provides=('zsurf=$pkgver')
conflicts=('zsurf-webkit-git')
source=("git+https://github.com/SteveDeFacto/zsurf.git")
build() {
cd zsurf
qmake
make
}
package() {
cd zsurf
make INSTALL_ROOT="$pkgdir" install
}
md5sums=('SKIP')
|