diff options
author | Andreas Grapentin <andreas@grapentin.org> | 2017-10-25 07:31:29 +0200 |
---|---|---|
committer | Andreas Grapentin <andreas@grapentin.org> | 2017-10-25 07:31:53 +0200 |
commit | 5e856b7cb3a94a04bc74635290714de58364dc26 (patch) | |
tree | 47140054921c12af93ede5f51ee40d4880e8787d /libre/khotkeys | |
parent | ee75f0e49a15fd08d90bf3c5ad517598dfd4d41a (diff) | |
download | abslibre-5e856b7cb3a94a04bc74635290714de58364dc26.tar.gz abslibre-5e856b7cb3a94a04bc74635290714de58364dc26.tar.bz2 abslibre-5e856b7cb3a94a04bc74635290714de58364dc26.zip |
libre/khotkeys: updated to 5.11.2
Diffstat (limited to 'libre/khotkeys')
-rw-r--r-- | libre/khotkeys/PKGBUILD | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/libre/khotkeys/PKGBUILD b/libre/khotkeys/PKGBUILD index e84975de0..602064bd4 100644 --- a/libre/khotkeys/PKGBUILD +++ b/libre/khotkeys/PKGBUILD @@ -6,18 +6,22 @@ # Contributor (Arch): Andrea Scarpino <andrea@archlinux.org> pkgname=khotkeys -pkgver=5.11.1 + +pkgver=5.11.2 pkgrel=1.parabola1 -pkgdesc='KHotKeys, with DuckDuckGo HTML support' -arch=('i686' 'x86_64' 'armv7h') -url='https://www.kde.org/workspaces/plasmadesktop/' -license=('LGPL') -depends=('plasma-workspace') -makedepends=('extra-cmake-modules' 'kdoctools' 'python' 'kdesignerplugin') -conflicts=('kdebase-workspace') +arch=(i686 x86_64 armv7h) + +pkgdesc="KHotKeys, with DuckDuckGo HTML support" +url="https://www.kde.org/workspaces/plasmadesktop/" +license=(LGPL) + +depends=(plasma-workspace) +makedepends=(extra-cmake-modules kdoctools python kdesignerplugin) +conflicts=(kdebase-workspace) groups=(plasma) -source=("https://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig}) -sha256sums=('850e226ca36549c560a5ee94a2fefe48f9e0b48c32898a86a66de3a4a20e3734' + +source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig}) +sha256sums=('953ecca1d75f7b23943eaeff2e8b3b1592f042bfe6e7b0c047043f26b6012af0' 'SKIP') validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E' # Jonathan Riddell '348C8651206633FD983A8FC4DEACEA00075E1D76' # KDE Neon @@ -25,13 +29,13 @@ validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E' # Jonathan Riddell prepare() { mkdir -p build - cd ${pkgname}-${pkgver} + cd $pkgname-$pkgver sed -i 's|google[.]com|duckduckgo.com/html|' data/defaults.khotkeys } build() { cd build - cmake ../${pkgname}-${pkgver} \ + cmake ../$pkgname-$pkgver \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib \ @@ -41,5 +45,5 @@ build() { package() { cd build - make DESTDIR="${pkgdir}" install + make DESTDIR="$pkgdir" install } |