diff options
author | root <root@rshg054.dnsready.net> | 2013-03-15 00:04:20 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-03-15 00:04:20 -0700 |
commit | eebfa6ebe1522831767019e496b0c094b2e15a5c (patch) | |
tree | 935fa3d9bddae6c8181a7025516e24875e35f9d2 /extra/ecasound | |
parent | 3ff20dedff636571ad0faa4736af5b23e4623ffe (diff) |
Fri Mar 15 00:04:19 PDT 2013
Diffstat (limited to 'extra/ecasound')
-rw-r--r-- | extra/ecasound/PKGBUILD | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/extra/ecasound/PKGBUILD b/extra/ecasound/PKGBUILD deleted file mode 100644 index 60b4b177b..000000000 --- a/extra/ecasound/PKGBUILD +++ /dev/null @@ -1,53 +0,0 @@ -# $Id: PKGBUILD 168410 2012-10-11 09:44:14Z schiv $ -# Maintainer: Ray Rashif <schiv@archlinux.org> -# Contributor: Eric Belanger <eric@archlinux.org> -# Contributor: Tom Newsom <Jeepster@gmx.co.uk> - -pkgname=ecasound -pkgver=2.9.0 -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=('audiofile' 'liblo' - 'liboil' 'lilv') -makedepends=('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') -source=(http://ecasound.seul.org/download/$pkgname-$pkgver.tar.gz) -md5sums=('05e7d4664cdf4c7a138c098e9506a551') - -build() { - cd "$srcdir/$pkgname-$pkgver" - - # use vendor_ruby for ruby files - sed -e 's/CONFIG\["sitedir"\]/CONFIG\["vendordir"\]/' -i configure - - 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: |