From 63d179775e063452db6358e15b9847e7fc6c84b6 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 18 Jul 2012 00:01:34 +0000 Subject: Wed Jul 18 00:01:34 UTC 2012 --- staging/pork/PKGBUILD | 27 +++++++++++++++++++++++++++ staging/tellico/PKGBUILD | 38 ++++++++++++++++++++++++++++++++++++++ staging/tellico/tellico.install | 13 +++++++++++++ 3 files changed, 78 insertions(+) create mode 100644 staging/pork/PKGBUILD create mode 100644 staging/tellico/PKGBUILD create mode 100644 staging/tellico/tellico.install (limited to 'staging') diff --git a/staging/pork/PKGBUILD b/staging/pork/PKGBUILD new file mode 100644 index 000000000..f927a6f45 --- /dev/null +++ b/staging/pork/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 71194 2012-05-24 17:29:40Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau +# Contributor: William Rea + +pkgname=pork +pkgver=0.99.8.1 +pkgrel=6 +pkgdesc="Console-based AOL Instant Messenger & IRC client" +arch=('i686' 'x86_64') +url="http://dev.ojnk.net/" +license=('GPL') +depends=('ncurses' 'perl') +source=(http://downloads.sourceforge.net/sourceforge/ojnk/$pkgname-$pkgver.tar.gz) +sha256sums=('f0d4cad21017fd75b3c200342c54dd56d9ff7bc38d1e9b3c8ba686ba53d585ed') + +build() { + cd $pkgname-$pkgver + + ./configure --prefix=/usr + make +} + +package() { + cd $pkgname-$pkgver + + make DESTDIR=${pkgdir} install +} diff --git a/staging/tellico/PKGBUILD b/staging/tellico/PKGBUILD new file mode 100644 index 000000000..c0945ceb4 --- /dev/null +++ b/staging/tellico/PKGBUILD @@ -0,0 +1,38 @@ +# $Id: PKGBUILD 70650 2012-05-13 20:07:17Z 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/staging/tellico/tellico.install b/staging/tellico/tellico.install new file mode 100644 index 000000000..3b3aff7d9 --- /dev/null +++ b/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