From 52a4948b9138662b1e7b23b04ef0d72101519f2d Mon Sep 17 00:00:00 2001 From: root Date: Tue, 15 May 2012 00:02:45 +0000 Subject: Tue May 15 00:02:45 UTC 2012 --- community-staging/tellico/PKGBUILD | 38 +++++++++++++++++++++++++++++++ community-staging/tellico/tellico.install | 13 +++++++++++ 2 files changed, 51 insertions(+) create mode 100644 community-staging/tellico/PKGBUILD create mode 100644 community-staging/tellico/tellico.install (limited to 'community-staging/tellico') diff --git a/community-staging/tellico/PKGBUILD b/community-staging/tellico/PKGBUILD new file mode 100644 index 000000000..3f232cf5d --- /dev/null +++ b/community-staging/tellico/PKGBUILD @@ -0,0 +1,38 @@ +# $Id: PKGBUILD 70653 2012-05-13 20:54:07Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau +# Contributor: Maintainer: Ray Rashif +# Contributor: Douglas Soares de Andrade + +pkgname=tellico +pkgver=2.3.5 +pkgrel=2 +pkgdesc="A collection manager for KDE" +arch=('i686' 'x86_64') +url="http://tellico-project.org/" +license=('GPL') +depends=('kdebase-workspace' 'yaz' 'exempi' 'libksane' 'taglib' 'kdemultimedia-kioslave' 'poppler-qt' 'qjson') +makedepends=('automoc4' 'cmake') +install=$pkgname.install +source=(http://tellico-project.org/files/${pkgname}-${pkgver}.tar.bz2) +sha256sums=('b31db35589cae7f9af56a17e6589f8c5de68e36d9fc5fbaea4154e8238bf041c') + +build() { + cd ${srcdir} + + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd ${srcdir}/build + + 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|' +} diff --git a/community-staging/tellico/tellico.install b/community-staging/tellico/tellico.install new file mode 100644 index 000000000..3b3aff7d9 --- /dev/null +++ b/community-staging/tellico/tellico.install @@ -0,0 +1,13 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null + update-mime-database usr/share/mime &> /dev/null + update-desktop-database -q +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} -- cgit v1.2.3-54-g00ecf