Date: Tuesday, February 6, 2018 @ 17:07:59 Author: arojas Revision: 289423
extra2community: Moving ecasound from extra to community Added: ecasound/ ecasound/repos/ ecasound/trunk/ ecasound/trunk/PKGBUILD ecasound/trunk/ruby2.patch -------------+ PKGBUILD | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ruby2.patch | 12 ++++++++++++ 2 files changed, 70 insertions(+) Added: ecasound/trunk/PKGBUILD =================================================================== --- ecasound/trunk/PKGBUILD (rev 0) +++ ecasound/trunk/PKGBUILD 2018-02-06 17:07:59 UTC (rev 289423) @@ -0,0 +1,58 @@ +# $Id$ +# Maintainer: Ray Rashif <[email protected]> +# Contributor: Eric Belanger <[email protected]> +# Contributor: Tom Newsom <[email protected]> + +pkgname=ecasound +pkgver=2.9.1 +pkgrel=10 +pkgdesc="Command-line multitrack audio processor" +arch=('x86_64') +url="https://ecasound.seul.org/ecasound/" +license=('GPL' 'LGPL') +depends=('audiofile' 'liblo>=0.28' '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') +source=("https://ecasound.seul.org/download/$pkgname-$pkgver.tar.gz" + 'ruby2.patch') +options=('staticlibs') +sha256sums=('39fce8becd84d80620fa3de31fb5223b2b7d4648d36c9c337d3739c2fad0dcf3' + '5dda8e8bd245d90975f57bd68e05c50f72076f7b82fab02fdd5a510275f0f188') + +prepare() { + cd "$srcdir/$pkgname-$pkgver" + + # fix ruby 2.0 incompatibility + use vendor_ruby for ruby files + patch -Np1 -i "$srcdir/ruby2.patch" +} +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 \ + --enable-liboil=no + + 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: Property changes on: ecasound/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: ecasound/trunk/ruby2.patch =================================================================== --- ecasound/trunk/ruby2.patch (rev 0) +++ ecasound/trunk/ruby2.patch 2018-02-06 17:07:59 UTC (rev 289423) @@ -0,0 +1,12 @@ +diff -aur ecasound-2.9.0.orig/configure ecasound-2.9.0/configure +--- ecasound-2.9.0.orig/configure 2013-03-26 17:14:51.759045636 +0800 ++++ ecasound-2.9.0/configure 2013-03-26 17:15:50.502060731 +0800 +@@ -6535,7 +6535,7 @@ + rubyecasound_support=no + ECA_S_RUBY_SITEDIR="" + else +- ECA_S_RUBY_SITEDIR="`ruby -e 'require "rbconfig"; include Config; print CONFIG["sitedir"] + "/" + CONFIG["MAJOR"] + "." + CONFIG["MINOR"]'`" ++ ECA_S_RUBY_SITEDIR="`ruby -e 'include RbConfig; print CONFIG["vendordir"] + "/" + CONFIG["MAJOR"] + "." + CONFIG["MINOR"]'`" + fi + +
