author | Antonio Rojas
<arojas@archlinux.org> 2017-10-10 10:22:00 UTC |
committer | Antonio Rojas
<arojas@archlinux.org> 2017-10-10 10:22:00 UTC |
parent | 601d5002c17095e8f2a9506e5c1e944a98f11c18 |
PKGBUILD | +10 | -11 |
diff --git a/PKGBUILD b/PKGBUILD index 715f226..9d076c7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,19 +1,18 @@ # Maintainer: Felix Yan <felixonmars@archlinux.org> +# Maintainer: Antonio Rojas <arojas@archlinux.org> # Contributor: Andrea Scarpino <andrea@archlinux.org> -# Contributor: Antonio Rojas pkgname=plasma-workspace-wallpapers -pkgver=5.10.5 +pkgver=5.11.0 pkgrel=1 pkgdesc='Additional wallpapers for the Plasma Workspace' -arch=('any') +arch=(any) url='https://www.kde.org/workspaces/plasmadesktop/' -license=('LGPL') -makedepends=('extra-cmake-modules' 'qt5-base') -conflicts=('kde-wallpapers') -groups=('plasma') -source=("https://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz"{,.sig}) -sha256sums=('0831c8a1749f1bb50558c8113db32e78dac2d607e2c9427b1343c06ed3c4f5fc' +license=(LGPL) +makedepends=(extra-cmake-modules qt5-base) +groups=(plasma) +source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig}) +sha256sums=('59f612bd830a791597e60b2daa2f1eeea3ea089accd4ab736663dbf73cebf3f0' 'SKIP') validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E' # Jonathan Riddell '348C8651206633FD983A8FC4DEACEA00075E1D76' # KDE Neon @@ -25,7 +24,7 @@ prepare() { build() { cd build - cmake ../${pkgname}-${pkgver} \ + cmake ../$pkgname-$pkgver \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DBUILD_TESTING=OFF @@ -34,5 +33,5 @@ build() { package() { cd build - make DESTDIR="${pkgdir}" install + make DESTDIR="$pkgdir" install }