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 /extra/ecasound/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/ecasound/PKGBUILD')
-rw-r--r-- | extra/ecasound/PKGBUILD | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/extra/ecasound/PKGBUILD b/extra/ecasound/PKGBUILD new file mode 100644 index 000000000..3bbab7309 --- /dev/null +++ b/extra/ecasound/PKGBUILD @@ -0,0 +1,52 @@ +# $Id: PKGBUILD 88360 2010-08-23 02:57:44Z schiv $ +# Maintainer: Ray Rashif <schiv@archlinux.org> +# Contributor: Eric Belanger <eric@archlinux.org> +# Contributor: Tom Newsom <Jeepster@gmx.co.uk> + +pkgname=ecasound +pkgver=2.7.2 +pkgrel=1 +pkgdesc="A software package designed for multitrack audio processing" +arch=('i686' 'x86_64') +url="http://www.eca.cx/ecasound/" +license=('GPL' 'LGPL') +depends=('gcc-libs' 'readline>=6.0.00' 'audiofile' + 'jack' 'liblo' 'liboil') +makedepends=('pkg-config' 'python2' 'ruby') +optdepends=('python2: ecamonitor, ECI API' + 'ruby: ECI API' + 'mpg123: MP3 decoding' + 'lame: MP3 encoding' + 'vorbis-tools: Ogg Vorbis decoding/encoding' + 'faad2: AAC decoding' + 'faac: AAC encoding' + 'timidity++: MIDI file input' + 'libmikmod: tracker module') +options=('!libtool') +changelog=$pkgname.changelog +source=(http://ecasound.seul.org/download/$pkgname-$pkgver.tar.gz) +md5sums=('40498ceed9cc7622ee969c427f13921c') +sha1sums=('6d5236155e1a1f9a9bc9e63f989baebfb1645a49') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + PYTHONPATH=/usr/bin/python2 ./configure \ + --prefix=/usr \ + --with-python-includes=/usr/include/python2.7 \ + --with-python-modules=/usr/lib/python2.7 + + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir/" install + + # fix for python 2.7 + sed -i 's:bin/env python:bin/env python2:' \ + "$pkgdir/usr/bin/ecamonitor" +} + +# vim:set ts=2 sw=2 et: |