From 37e364f033ed6db243d6db524075d8c5394c90f9 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 8 Apr 2012 00:02:42 +0000 Subject: Sun Apr 8 00:02:42 UTC 2012 --- community-testing/clanlib/PKGBUILD | 37 +++++++++++++++++++++++++++++++++++ community-testing/tasks/PKGBUILD | 33 +++++++++++++++++++++++++++++++ community-testing/tasks/tasks.install | 11 +++++++++++ 3 files changed, 81 insertions(+) create mode 100644 community-testing/clanlib/PKGBUILD create mode 100644 community-testing/tasks/PKGBUILD create mode 100644 community-testing/tasks/tasks.install (limited to 'community-testing') diff --git a/community-testing/clanlib/PKGBUILD b/community-testing/clanlib/PKGBUILD new file mode 100644 index 000000000..ca6ff88fd --- /dev/null +++ b/community-testing/clanlib/PKGBUILD @@ -0,0 +1,37 @@ +# $Id: PKGBUILD 68979 2012-04-06 19:20:47Z svenstaro $ +# Maintainer: Sven-Hendrik Haase + +pkgname=clanlib +pkgver=2.3.6 +pkgrel=2 +pkgdesc="A multi-platform game development library." +arch=('i686' 'x86_64') +url="http://clanlib.org/" +license=('zlib') +depends=('alsa-lib' 'libjpeg' 'libmikmod' 'libpng' 'libvorbis' 'libxi' 'libxmu' 'mesa' 'sdl_gfx' 'freetype2' 'pcre' 'sqlite') +makedepends=('doxygen' 'graphviz') +options=('!libtool') +source=(http://clanlib.org/download/releases-2.0/ClanLib-${pkgver}.tgz) +md5sums=('aa037a8a6297fb0b2efd927b1b15e8de') + +build() { + cd ${srcdir}/ClanLib-${pkgver} + + ./configure --prefix=/usr --enable-docs + + make + # Somehow this breaks. :( + #make html +} + +package() { + cd ${srcdir}/ClanLib-${pkgver} + + make DESTDIR=${pkgdir} install + #make DESTDIR=${pkgdir} install-html + + install -d ${pkgdir}/usr/share/licenses/${pkgname} + install -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/ +} + +# vim: sw=2:ts=2 et: diff --git a/community-testing/tasks/PKGBUILD b/community-testing/tasks/PKGBUILD new file mode 100644 index 000000000..296fc2629 --- /dev/null +++ b/community-testing/tasks/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 68949 2012-04-06 12:58:03Z bgyorgy $ +# Maintainer: Sergej Pupykin +# Maintainer: Geoffroy Carrier +# Contributor: lp76 + +pkgname=tasks +pkgver=0.20 +pkgrel=2 +pkgdesc="A simple to do list application that uses libecal" +arch=(i686 x86_64) +url="http://pimlico-project.org/tasks.html" +license=('GPL') +depends=('evolution-data-server>=3.4.0' 'xdg-utils' 'gtk2') +makedepends=('intltool') +install=tasks.install +#source=(http://pimlico-project.org/sources/tasks/$pkgname-$pkgver.tar.gz) +#source=(http://arch.p5n.pp.ru/~sergej/dl/2011/$pkgname-$pkgver.tar.gz) +source=(http://ftp.gnome.org/pub/GNOME/sources/tasks/$pkgver/tasks-$pkgver.tar.xz) +md5sums=('f4602cd39af10f5b327d9a59a22ea034') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install + install -d "$pkgdir/usr/share/pixmaps" + ln -sf "/usr/share/icons/hicolor/48x48/apps/tasks.png" \ + "$pkgdir/usr/share/pixmaps/tasks.png" +} diff --git a/community-testing/tasks/tasks.install b/community-testing/tasks/tasks.install new file mode 100644 index 000000000..c5571196e --- /dev/null +++ b/community-testing/tasks/tasks.install @@ -0,0 +1,11 @@ +post_install() { + which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true +} + +post_upgrade() { + which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true +} + +post_remove() { + which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true +} -- cgit v1.2.3-54-g00ecf