mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 02:07:15 +08:00
25 lines
629 B
Bash
25 lines
629 B
Bash
# Contributor: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=qupzilla
|
|
pkgver=1.0.1
|
|
pkgrel=9
|
|
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-QupZillav1.0.0-final-0-gae19893.tar.gz)
|
|
md5sums=('3398c8c02e879c8f12de68bbdaae3ac1')
|
|
|
|
build() {
|
|
cd $srcdir/nowrep-QupZilla-ae19893/src
|
|
export USE_WEBGL="true"
|
|
qmake QupZilla.pro
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/nowrep-QupZilla-ae19893/src
|
|
make INSTALL_ROOT=$pkgdir install
|
|
|
|
} |