git » kio-extras.git » commit f665a9d

Prepare KDE Applications 15.08 release

author Antonio Rojas
2015-08-18 17:21:48 UTC
committer Antonio Rojas
2015-08-18 17:21:48 UTC
parent 8cd07f6e63d92d8807c2e1682896be33c9e3e6dd

Prepare KDE Applications 15.08 release

PKGBUILD +14 -15

diff --git a/PKGBUILD b/PKGBUILD
index 6d58dba..6b8d8f0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,29 +1,28 @@
 # Maintainer: Felix Yan <felixonmars@archlinux.org>
+# Maintainer: Antonio Rojas <arojas@archlinux.org>
 # Contributor: Andrea Scarpino <andrea@archlinux.org>
-# Contributor: Antonio Rojas
 
 pkgname=kio-extras
-pkgver=5.3.2
-pkgrel=2
+pkgver=15.08.0
+pkgrel=1
 pkgdesc="Additional components to increase the functionality of KIO"
-arch=('i686' 'x86_64')
+arch=(i686 x86_64)
 url='https://projects.kde.org/projects/kde/workspace/kio-extras'
-license=('LGPL')
-depends=('kdelibs4support' 'khtml' 'kdnssd' 'libssh' 'smbclient'
-         'exiv2' 'openexr' 'openslp' 'libmtp' 'kpty')
-makedepends=('extra-cmake-modules' 'kdoctools' 'python')
-groups=('plasma')
-install="${pkgname}.install"
-source=("http://download.kde.org/stable/plasma/${pkgver}/$pkgname-$pkgver.tar.xz")
-md5sums=('ee6f6308723206dbc871b3888317484b')
+license=(LGPL)
+depends=(kdelibs4support khtml kdnssd libssh smbclient exiv2 openexr openslp libmtp kpty)
+makedepends=(extra-cmake-modules kdoctools)
+groups=(kde-applications kdenetwork)
+install=$pkgname.install
+source=("http://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz")
+md5sums=('4e2bb6dc68355e874d0a4e5fbd6c4669')
 
 prepare() {
-  mkdir build
+  mkdir -p build
 }
 
 build() {
   cd build
-  cmake ../${pkgname}-${pkgver} \
+  cmake ../$pkgname-$pkgver \
     -DCMAKE_BUILD_TYPE=Release \
     -DCMAKE_INSTALL_PREFIX=/usr \
     -DLIB_INSTALL_DIR=lib \
@@ -34,6 +33,6 @@ build() {
 
 package() {
   cd build
-  make DESTDIR="${pkgdir}" install
+  make DESTDIR="$pkgdir" install
 }