diff options
author | root <root@rshg054.dnsready.net> | 2012-05-15 00:02:45 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-05-15 00:02:45 +0000 |
commit | 52a4948b9138662b1e7b23b04ef0d72101519f2d (patch) | |
tree | 701b562dc98245a57c6a93f3c2f94e3b1832f0eb /community-staging | |
parent | d3af8dc0117dc1ce4fea3d05c7a2d7786bd78986 (diff) |
Tue May 15 00:02:45 UTC 2012
Diffstat (limited to 'community-staging')
-rw-r--r-- | community-staging/tellico/PKGBUILD | 38 | ||||
-rw-r--r-- | community-staging/tellico/tellico.install | 13 |
2 files changed, 51 insertions, 0 deletions
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 <dragonlord@aur.archlinux.org> +# Contributor: Maintainer: 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.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 +} |