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=1
|
|
pkgdesc="A very fast open source browser based on WebKit core"
|
|
url="http://qt-apps.org/content/show.php?content=14569"3
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL3')
|
|
depends=('qt')
|
|
source=(https://github.com/nowrep/QupZilla/tarball/master/nowrep-QupZilla-v1.1.0-1-g4fc1779.tar.gz)
|
|
md5sums=('8b7259de98877c9b9d8cceefa947df52')
|
|
|
|
build() {
|
|
cd $srcdir/nowrep-QupZilla-4fc1779/
|
|
export USE_WEBGL="true"
|
|
export KDE="true"
|
|
qmake QupZilla.pro
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/nowrep-QupZilla-4fc1779/
|
|
make INSTALL_ROOT=$pkgdir install
|
|
|
|
} |