desktop/qtwebkit-plugins/PKGBUILD
2014-12-10 11:59:36 +00:00

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
}