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 4a19ca0b7..856c643fd 100644
--- a/extra/ardour/PKGBUILD
+++ b/extra/ardour/PKGBUILD
@@ -9,7 +9,7 @@ pkgver=3.5.14
_pkgver=3.5
pkgrel=1
pkgdesc="Professional-grade digital audio workstation"
-arch=('i686' 'x86_64')
+arch=('i686' 'x86_64' 'mips64el')
url="http://ardour.org/"
license=('GPL')
depends=('liblrdf' 'liblo' 'libsmf' 'lilv'
@@ -32,9 +32,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
}