# Maintainer (Arch): Antonio Rojas # Maintainer (Arch): Felix Yan # Maintainer: André Silva # Contributor: Michał Masłowski pkgname=konqueror pkgver=16.12.2 pkgrel=1.parabola2 pkgdesc="KDE File Manager & Web Browser, without Google, nonfree software recommendation and nonfree qt5-webengine support" arch=(i686 x86_64 armv7h) url="https://konqueror.org/" license=(LGPL) depends=(dolphin keditbookmarks) makedepends=(extra-cmake-modules kdoctools python tidy kdesignerplugin kdesu) optdepends=('tidy: tidy HTML plugin' 'kdesu: shell command plugin') conflicts=(kdebase-konqueror kdebase-konq-plugins) replaces=(kdebase-konqueror kdebase-konq-plugins) groups=(kde-applications kdebase) source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig} 'libre.patch') md5sums=('ebc2f5db4aa377ca11d4e4a7cdf3bf7f' 'SKIP' 'dc679b64429e08e541f27268a8faadd6') validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7) # Albert Astals Cid prepare() { mkdir -p build cd $pkgname-$pkgver # Remove nonfree WebEngine support and nonfree software or Google recommendation rm -rv webenginepart patch -p1 -i ../libre.patch } build() { cd build cmake ../$pkgname-$pkgver \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib \ -DBUILD_TESTING=OFF make } package() { cd build make DESTDIR="$pkgdir" install }