summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 5c972dcd5989039bc0eb06dc09665de976aca256 (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 QtWebKit1 with front-end logic written in Javascript."
arch=('i686' 'x86_64')
url="https://github.com/SteveDeFacto/zsurf"
license=('GPL3')
makedepends=('git')
depends=('qt5-webkit-ng')
provides=('zsurf=$pkgver')
conflicts=('zsurf')

source=("git+https://github.com/SteveDeFacto/zsurf.git")

build() {
	cd zsurf
	qmake
	make
}

package() {
	cd zsurf
	make INSTALL_ROOT="$pkgdir" install
}
md5sums=('SKIP')