diff options
author | root <root@rshg047.dnsready.net> | 2011-06-20 23:03:55 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-06-20 23:03:55 +0000 |
commit | f02c28de0bbcb85e152fc19d0008805021fe1a33 (patch) | |
tree | 0cb0a135fbbb06d2e31fe64ff2caad474dcc3813 /community/solfege | |
parent | 5457eacc747fc3f91e10a1f452230b1feac39eff (diff) |
Mon Jun 20 23:03:54 UTC 2011
Diffstat (limited to 'community/solfege')
-rw-r--r-- | community/solfege/PKGBUILD | 40 | ||||
-rw-r--r-- | community/solfege/solfege.changelog | 11 |
2 files changed, 35 insertions, 16 deletions
diff --git a/community/solfege/PKGBUILD b/community/solfege/PKGBUILD index af0593ccc..dd879bd65 100644 --- a/community/solfege/PKGBUILD +++ b/community/solfege/PKGBUILD @@ -1,10 +1,13 @@ -# $Id: PKGBUILD 48966 2011-06-08 20:39:27Z schiv $ +# $Id: PKGBUILD 49619 2011-06-18 17:40:00Z schiv $ # Maintainer: Ray Rashif <schiv@archlinux.org> # Contributor: Corrado Primier <bardo@aur.archlinux.org> # Contributor: sickhate <sickhate@tux-linux.net> +# TODO: +# bring in pyalsa, csound, mma + pkgname=solfege -pkgver=3.18.8 +pkgver=3.20.0 pkgrel=1 pkgdesc="Music education and ear training software" arch=('i686' 'x86_64') @@ -13,22 +16,24 @@ license=('GPL3') depends=('pygtk' 'libgtkhtml') makedepends=('ghostscript' 'gnome-doc-utils' 'librsvg' 'libxslt' 'lilypond' 'swig' 'texinfo' 'txt2man' 'pkg-config') -optdepends=('timidity++: Software MIDI support') +optdepends=('timidity++: or any MIDI player & MIDI-WAV converter' + 'mpg123: or any MP3 player' + 'lame: or any WAV-MP3 converter' + 'vorbis-tools: or any OGG player & WAV-OGG converter' + 'lilypond: for generating print-outs & score sheets' + 'texlive-bin: use LaTeX to replace HTML reports with DVI') changelog=$pkgname.changelog -install=$pkgname.install -source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz" - 'solfege.desktop') -md5sums=('5e166de37f223b79e78c656661828e5d' - '22b89dcfd9e7c98ab238942139b8a970') +source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") +md5sums=('3deb355d57f009201f2c5486b93c5950') build() { cd "$srcdir/$pkgname-$pkgver" - # python2 fix - 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 + # python2 fix for entire build + export PYTHON=/usr/bin/python2 + + # python2 fix for rogue Makefile + sed -i 's/shell python/shell python2/g' help/Makefile ./configure --prefix=/usr \ --sysconfdir=/etc @@ -38,10 +43,13 @@ build() { package() { cd "$srcdir/$pkgname-$pkgver" - make DESTDIR="$pkgdir/" install + # python2 fix for runtime + for i in $(find "$pkgdir" -name '*.py'); do + sed -i 's:^#!.*bin/python$:#!/usr/bin/python2:' "$i" + sed -i 's:^#!.*bin/env python$:#!/usr/bin/env python2:' "$i" + done - install -Dm644 ../$pkgname.desktop \ - "$pkgdir/usr/share/applications/$pkgname.desktop" + make DESTDIR="$pkgdir" install } # vim:set ts=2 sw=2 et: diff --git a/community/solfege/solfege.changelog b/community/solfege/solfege.changelog index a2c6f173b..b42401c9c 100644 --- a/community/solfege/solfege.changelog +++ b/community/solfege/solfege.changelog @@ -1,3 +1,14 @@ +2011-06-17 Ray Rashif <schiv@archlinux.org> + + * 3.20.0-1: + Upstream release + Added some optional dependencies + Removed install file; + timidity is now the default synthesizer + users should be able to figure stuff out + Removed desktop file; + already included in upstream tarball + 2010-10-02 Ray Rashif <schiv@archlinux.org> * Version bump: 3.17.0 |