Date: Wednesday, February 7, 2018 @ 19:21:41 Author: arojas Revision: 290031
Fix text to URL (FS#57296) Modified: qupzilla/trunk/PKGBUILD ----------+ PKGBUILD | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2018-02-07 18:51:13 UTC (rev 290030) +++ PKGBUILD 2018-02-07 19:21:41 UTC (rev 290031) @@ -4,7 +4,7 @@ pkgname=qupzilla pkgver=2.2.5 -pkgrel=1 +pkgrel=2 pkgdesc="Cross-platform QtWebEngine browser" arch=(x86_64) url="https://www.qupzilla.com/" @@ -12,9 +12,16 @@ depends=(qt5-webengine qt5-x11extras qt5-svg) makedepends=(qt5-tools kwallet libgnome-keyring) optdepends=('kwallet: kf5 kwallet integration' 'libgnome-keyring: gnome keyring integration') -source=(https://github.com/QupZilla/qupzilla/releases/download/v$pkgver/QupZilla-$pkgver.tar.xz) -sha256sums=('b1b5bf6b3061a76d1add3c072753cc088140eb0fafcf24b9a0c4951b4d8948f6') +source=(https://github.com/QupZilla/qupzilla/releases/download/v$pkgver/QupZilla-$pkgver.tar.xz + https://github.com/QupZilla/qupzilla/commit/f3b770d2.patch) +sha256sums=('b1b5bf6b3061a76d1add3c072753cc088140eb0fafcf24b9a0c4951b4d8948f6' + '497268175711ff833451943a40803892c18388ca7ab8fb86c8277c26961c678b') +prepare() { + cd QupZilla-$pkgver + patch -p1 -i ../f3b770d2.patch # https://github.com/QupZilla/qupzilla/issues/2578 +} + build() { cd QupZilla-$pkgver export USE_WEBGL=true \
