From 7a65a910b77ad191d69881098c47f9b0c852d92e Mon Sep 17 00:00:00 2001 From: root Date: Tue, 13 Aug 2013 01:33:19 -0700 Subject: Tue Aug 13 01:31:08 PDT 2013 --- community/tellico/PKGBUILD | 37 +++++++++++++++++++++++++++++++++++++ community/tellico/tellico.changelog | 5 +++++ community/tellico/tellico.install | 13 +++++++++++++ 3 files changed, 55 insertions(+) create mode 100644 community/tellico/PKGBUILD create mode 100644 community/tellico/tellico.changelog create mode 100644 community/tellico/tellico.install (limited to 'community/tellico') diff --git a/community/tellico/PKGBUILD b/community/tellico/PKGBUILD new file mode 100644 index 000000000..5c28092e5 --- /dev/null +++ b/community/tellico/PKGBUILD @@ -0,0 +1,37 @@ +# $Id: PKGBUILD 94089 2013-07-14 11:11:38Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau +# Contributor: Ray Rashif +# Contributor: Douglas Soares de Andrade + +pkgname=tellico +pkgver=2.3.8 +pkgrel=1 +pkgdesc="A collection manager for KDE" +arch=('i686' 'x86_64') +url="http://tellico-project.org/" +license=('GPL') +depends=('kdebase-workspace' 'yaz' 'exempi' 'libksane' 'taglib' 'libkcddb' 'poppler-qt' 'kdemultimedia-audiocd-kio') +makedepends=('automoc4' 'cmake') +install=$pkgname.install +changelog=$pkgname.changelog +source=(http://tellico-project.org/files/${pkgname}-${pkgver}.tar.bz2) +sha256sums=('2d8a0d06951e0755c7987d0a07cc8157cd42c8b1c143170042183ff1e89e2ccb') + +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/tellico/tellico.changelog b/community/tellico/tellico.changelog new file mode 100644 index 000000000..a1591d839 --- /dev/null +++ b/community/tellico/tellico.changelog @@ -0,0 +1,5 @@ +2013-07-14 Jaroslav Lichtblau + * tellico 2.3.8-1 + +2013-01-30 Jaroslav Lichtblau + * tellico 2.3.7-1 diff --git a/community/tellico/tellico.install b/community/tellico/tellico.install new file mode 100644 index 000000000..3b3aff7d9 --- /dev/null +++ b/community/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