git » kdenlive.git » commit 5af927c

KDE Applications 17.08.2

author Antonio Rojas
2017-10-12 14:11:44 UTC
committer Antonio Rojas
2017-10-12 14:11:44 UTC
parent 8ed523f2c9936813db42a5d6d4be26e86cfbb206

KDE Applications 17.08.2

PKGBUILD +6 -6

diff --git a/PKGBUILD b/PKGBUILD
index 6c946fc..aa5c23a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
 # Contributor: Gustavo Alvarez <sl1pkn07@gmail.com>
 
 pkgname=kdenlive
-pkgver=17.08.1
+pkgver=17.08.2
 pkgrel=1
 pkgdesc="A non-linear video editor for Linux using the MLT video framework"
 arch=(i686 x86_64)
@@ -23,8 +23,8 @@ optdepends=('ffmpeg: for FFmpeg plugin'
             'xine-ui: for DVD preview'
             'vlc: for DVD preview'
             'plasma-desktop: theme configuration')
-source=("https://download.kde.org/stable/applications/${pkgver}/src/$pkgname-${pkgver}.tar.xz"{,.sig})
-sha256sums=('107385b706f55bf1b8a68b7a9f71511418c2b226785963241f93a9292f0a4632'
+source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('22e51577abc2e687f33c844eca1c06028cf31c1f264c216f6e6225df77531828'
             'SKIP')
 validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7  # Albert Astals Cid <aacid@kde.org>
               F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck <cfeck@kde.org>
@@ -38,12 +38,12 @@ build() {
   cmake ../$pkgname-$pkgver \
     -DCMAKE_BUILD_TYPE=Release \
     -DCMAKE_INSTALL_PREFIX=/usr \
-    -DKDE_INSTALL_LIBDIR=lib \
+    -DCMAKE_INSTALL_LIBDIR=lib \
     -DBUILD_TESTING=OFF
   make
 }
 
 package() {
-  make -C build DESTDIR="${pkgdir}" install
+  cd build
+  make DESTDIR="$pkgdir" install
 }
-