desktop/qtwebkit-plugins/PKGBUILD

28 lines
750 B
Bash
Raw Normal View History

2014-12-10 19:59:36 +08:00
pkgname=qtwebkit-plugins
pkgver=0.1
2015-03-15 22:00:41 +08:00
pkgrel=3
_commit=247d9cd
2014-12-10 19:59:36 +08:00
pkgdesc="Set of QtWebKit platform plugins for the latest QtWebKit, spellcheck and notifications"
url="http://www.qupzilla.com"
arch=('x86_64')
license=('GPL3')
2015-03-15 22:00:41 +08:00
depends=('qtwebkit' 'hunspell')
2014-12-10 19:59:36 +08:00
categories=('network')
source=("https://github.com/QupZilla/qtwebkit-plugins/tarball/master/QupZilla-qtwebkit-plugins-${pkgver}.tar.gz"
'spellcheck.diff')
2015-03-15 22:00:41 +08:00
md5sums=('d26180cf87c4aefd5153a9e13fc85bd0'
2014-12-10 19:59:36 +08:00
'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
}