mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
33 lines
871 B
Bash
33 lines
871 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: Anke Boersma <abveritas@chakra-project.org>
|
|
|
|
pkgname=qtwebkit-plugins
|
|
pkgver=0.1
|
|
pkgrel=2
|
|
_commit=d6d8009
|
|
pkgdesc="Set of QtWebKit platform plugins for the latest QtWebKit, spellcheck and notifications"
|
|
url="http://www.qupzilla.com"
|
|
arch=('x86_64')
|
|
license=('GPL3')
|
|
depends=('qtwebkit>=2.3' 'hunspell')
|
|
categories=('network')
|
|
source=("https://github.com/QupZilla/qtwebkit-plugins/tarball/master/QupZilla-qtwebkit-plugins-${pkgver}.tar.gz"
|
|
'spellcheck.diff')
|
|
md5sums=('0d29bb74a83403fe67b8d26cad2b03ee'
|
|
'044ced8c0cd2bd352875b7eb563eb030')
|
|
|
|
build() {
|
|
cd "${srcdir}/QupZilla-qtwebkit-plugins-${_commit}/"
|
|
patch -p1 -i "${srcdir}/spellcheck.diff"
|
|
qmake
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/QupZilla-qtwebkit-plugins-${_commit}/"
|
|
|
|
make INSTALL_ROOT=$pkgdir install
|
|
}
|