desktop/qupzilla/PKGBUILD

25 lines
564 B
Bash

# Contributor: Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=qupzilla
pkgver=1.0.1
pkgrel=3
pkgdesc="A very fast open source browser based on WebKit core"
url="http://qt-apps.org/content/show.php?content=145693"
arch=('i686' 'x86_64')
license=('GPL3')
depends=('qt')
source=(nowrep-QupZilla-e24b4d3.zip)
md5sums=('b72921f6a3a35d407bd8292d0129faa6')
build() {
cd $srcdir/nowrep-QupZilla-e24b4d3/src/
qmake QupZilla.pro
export USE_WEBGL="true"
make
}
package() {
cd $srcdir/nowrep-QupZilla-e24b4d3/src/
make INSTALL_ROOT=$pkgdir install
}