desktop/qupzilla/PKGBUILD
2012-03-06 11:37:36 +00:00

26 lines
608 B
Bash

# Contributor: Neophytos Kolokotronis <tetris4@gmail.com>
pkgname=qupzilla
pkgver=1.0.1
pkgrel=4
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')
categories=('network')
source=(https://github.com/nowrep/QupZilla/zipball/master)
md5sums=('7d397c6804d0a5147c8ac26f4dea9017')
build() {
cd $srcdir/nowrep-QupZilla-e24b4d3/src/
export USE_WEBGL="true"
qmake QupZilla.pro
make
}
package() {
cd $srcdir/nowrep-QupZilla-e24b4d3/src/
make INSTALL_ROOT=$pkgdir install
}