summaryrefslogtreecommitdiff
path: root/libre/konqueror/PKGBUILD
blob: e5198350ad63c0203b11d2ea148b23059c82998b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Maintainer (arch): Antonio Rojas <arojas@archlinux,org>
# Maintainer (arch): Felix Yan <felixonmars@archlinux.org>
# Maintainer: Andreas Grapentin <andreas@grapentin.org>
# Contributor: André Silva <emulatorman@hyperbola.info>
# Contributor: Omar Vega Ramos <ovruni@gnu.org.pe>
# Contributor: Michał Masłowski <mtjm@mtjm.eu>
# Contributor: jc_gargma <jc_gargma@iserlohn-fortress.net>


# parabola changes and rationale:
# - build without qt5-webengine


pkgname=konqueror
pkgver=19.12.3
pkgrel=1
pkgrel+=.parabola1
pkgdesc="KDE File Manager & Web Browser"
arch=(x86_64)
arch+=(i686 armv7h)
url="https://konqueror.org/"
license=(LGPL)
depends=(dolphin keditbookmarks qt5-script kdelibs4support khtml)
makedepends=(extra-cmake-modules kdoctools kdesignerplugin kdesu)
optdepends=('kdesu: shell command plugin')
groups=(kde-applications kdebase)
source=("https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
source+=('libre.patch')
sha256sums=('0f2b31a1dae1740839232bd646bf22d7cb57e34995584b9a96271ebcb0da7f0e'
            'SKIP'
            '677a8cc6a725a1f66a97d79e2ca07d08f8a4328e9704f033f6686c921122f207')
validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid <aacid@kde.org>
              F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck <cfeck@kde.org>

prepare() {
  mkdir -p build

  cd $pkgname-$pkgver
  # Remove nonfree WebEngine support and nonfree software or Google recommendation
  rm -rv webenginepart
  patch -Np1 -i "$srcdir"/libre.patch
}

build() {
  cd build
  cmake ../$pkgname-$pkgver \
    -DBUILD_TESTING=OFF
  make
}

package() {
  cd build
  make DESTDIR="$pkgdir" install
}