summaryrefslogtreecommitdiff
path: root/community/tellico/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/tellico/PKGBUILD')
-rw-r--r--community/tellico/PKGBUILD20
1 files changed, 10 insertions, 10 deletions
diff --git a/community/tellico/PKGBUILD b/community/tellico/PKGBUILD
index b8d2ed660..d430c45cc 100644
--- a/community/tellico/PKGBUILD
+++ b/community/tellico/PKGBUILD
@@ -1,12 +1,12 @@
-# $Id: PKGBUILD 106856 2014-03-09 12:28:17Z andrea $
+# $Id: PKGBUILD 113716 2014-06-28 16:53:12Z jlichtblau $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Ray Rashif <schiv@archlinux.org
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Douglas Soares de Andrade <dsa@aur.archlinux.org>
pkgname=tellico
-pkgver=2.3.8
-pkgrel=5
+pkgver=2.3.9
+pkgrel=1
pkgdesc="A collection manager for KDE"
arch=('i686' 'x86_64')
url="http://tellico-project.org/"
@@ -16,23 +16,23 @@ makedepends=('automoc4' 'cmake')
install=$pkgname.install
changelog=$pkgname.changelog
source=(http://tellico-project.org/files/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('2d8a0d06951e0755c7987d0a07cc8157cd42c8b1c143170042183ff1e89e2ccb')
+sha256sums=('5184c130ea7561be6e72580105f30d5f160fd2fd5c9ffc7f7e16faf227a20114')
build() {
- cd ${srcdir}
+ cd "${srcdir}"
mkdir build
cd build
- cmake ../${pkgname}-${pkgver} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr \
- -DWITH_Nepomuk=OFF
+
+ cmake ../${pkgname}-${pkgver} -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DWITH_Nepomuk=OFF
make
}
package() {
- cd ${srcdir}/build
+ cd "${srcdir}"/build
- make DESTDIR=${pkgdir} install
+ make DESTDIR="${pkgdir}" install
# fix python 2.7 path
- find ${pkgdir} -iname "*.py" | xargs sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|'
+ find "${pkgdir}" -iname "*.py" | xargs sed -i 's|#!/usr/bin/env python|#!/usr/bin/env python2|'
}