mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
26 lines
639 B
Bash
26 lines
639 B
Bash
# Contributor: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=qupzilla
|
|
pkgver=1.1.0
|
|
pkgrel=2
|
|
pkgdesc="A very fast open source browser based on WebKit core"
|
|
url="http://qt-apps.org/content/show.php?content=14569"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL3')
|
|
depends=('qt')
|
|
source=(https://github.com/nowrep/QupZilla/tarball/master/nowrep-QupZilla-v1.1.0-83-g45d3f5b.tar.gz)
|
|
md5sums=('28e88617b711fad016b94b1503e06a0e')
|
|
|
|
build() {
|
|
cd $srcdir/nowrep-QupZilla-45d3f5b/
|
|
export USE_WEBGL="true"
|
|
export KDE="true"
|
|
qmake QupZilla.pro
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/nowrep-QupZilla-45d3f5b/
|
|
make INSTALL_ROOT=$pkgdir install
|
|
|
|
} |