summaryrefslogtreecommitdiff
path: root/extra/ardour/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/ardour/PKGBUILD')
-rw-r--r--extra/ardour/PKGBUILD7
1 files changed, 5 insertions, 2 deletions
diff --git a/extra/ardour/PKGBUILD b/extra/ardour/PKGBUILD
index e82cc4ad8..5959fca9f 100644
--- a/extra/ardour/PKGBUILD
+++ b/extra/ardour/PKGBUILD
@@ -8,7 +8,7 @@ _pkgname=Ardour3
pkgver=3.5.308
pkgrel=2
pkgdesc="Professional-grade digital audio workstation"
-arch=('i686' 'x86_64')
+arch=('i686' 'x86_64' 'mips64el')
url="http://ardour.org/"
license=('GPL')
depends=('liblrdf' 'liblo>=0.28' 'libsmf' 'lilv'
@@ -31,9 +31,12 @@ prepare() {
build() {
cd "$srcdir/$_pkgname-$pkgver"
+ # SSE code is used by default on all arches.
+ [ "$CARCH" == "mips64el" ] && extra=--no-fpu-optimization
+
python2 waf configure --prefix=/usr \
--configdir=/etc \
- --docs
+ --docs $extra
python2 waf build $MAKEFLAGS
}