desktop/qtwebkit-plugins/PKGBUILD

33 lines
873 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=1
_commit=7816e18
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=('e33860abd39b1081aa7dc671711ef46c'
'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
}