diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2012-04-09 09:50:29 +0200 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2012-04-09 09:50:29 +0200 |
commit | 4d0f0293b0108f751d79e5a060534fbc9575f7bb (patch) | |
tree | 93c28176dfd2491e899d2ffb967c671abddc8ab8 /community-testing | |
parent | 2cf785af142618fb225778622b1d94a016c18462 (diff) | |
parent | 1fed401c439c264bd92a4c13af1bea0bea458cb4 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
core/gawk/PKGBUILD
libre/linux-libre/PKGBUILD
staging/icu/PKGBUILD
testing/cairo/PKGBUILD
Diffstat (limited to 'community-testing')
-rw-r--r-- | community-testing/clanlib/PKGBUILD | 37 | ||||
-rw-r--r-- | community-testing/tasks/PKGBUILD | 33 | ||||
-rw-r--r-- | community-testing/tasks/tasks.install | 11 |
3 files changed, 0 insertions, 81 deletions
diff --git a/community-testing/clanlib/PKGBUILD b/community-testing/clanlib/PKGBUILD deleted file mode 100644 index ca6ff88fd..000000000 --- a/community-testing/clanlib/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: PKGBUILD 68979 2012-04-06 19:20:47Z svenstaro $ -# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> - -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 deleted file mode 100644 index 296fc2629..000000000 --- a/community-testing/tasks/PKGBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# $Id: PKGBUILD 68949 2012-04-06 12:58:03Z bgyorgy $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Maintainer: Geoffroy Carrier <geoffroy.carrier@aur.archlinux.org> -# Contributor: lp76 <l.peduto@gmail.com> - -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 deleted file mode 100644 index c5571196e..000000000 --- a/community-testing/tasks/tasks.install +++ /dev/null @@ -1,11 +0,0 @@ -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 -} |