diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/pympd |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/pympd')
-rw-r--r-- | community/pympd/ChangeLog | 2 | ||||
-rw-r--r-- | community/pympd/PKGBUILD | 33 |
2 files changed, 35 insertions, 0 deletions
diff --git a/community/pympd/ChangeLog b/community/pympd/ChangeLog new file mode 100644 index 000000000..2ac209c7d --- /dev/null +++ b/community/pympd/ChangeLog @@ -0,0 +1,2 @@ +2010-01-02 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * Update to major release O.08.1 diff --git a/community/pympd/PKGBUILD b/community/pympd/PKGBUILD new file mode 100644 index 000000000..742a74a63 --- /dev/null +++ b/community/pympd/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 27187 2010-09-18 15:58:45Z schuay $ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> +# Contributor: Allan McRae <allan@archlinux.org> +# Contributor: whatah <whatah@gmail.com> +# Contributor: Andrew Conkling <andrewski@fr.st> + +pkgname=pympd +pkgver=0.08.1 +pkgrel=2 +pkgdesc="A Rhythmbox-like PyGTK+ client for Music Player Daemon" +arch=('i686' 'x86_64') +url="http://pympd.sourceforge.net/" +license=('GPL') +depends=('libglade' 'pygtk>=2.6') +makedepends=('pkgconfig') +options=('!emptydirs') +source=(http://pympd.sourceforge.net/files/$pkgname-$pkgver.tar.gz) +md5sums=('388c2882ffbacffb27b491441a2b2a23') + +build() { + cd ${srcdir}/$pkgname-$pkgver + + # python2 fix + sed -i 's_which python_which python2_' Makefile + sed -i 's_python -c_python2 -c_' src/modules/tray/Makefile + for file in $(find . -name '*.py' -print); do + sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file + sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file + done + + make PREFIX=/usr DESTDIR=${pkgdir} install +} + |