summaryrefslogtreecommitdiff
path: root/extra/ecasound/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/ecasound/PKGBUILD')
-rw-r--r--extra/ecasound/PKGBUILD53
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: