diff options
Diffstat (limited to 'community/calf/PKGBUILD')
-rw-r--r-- | community/calf/PKGBUILD | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/community/calf/PKGBUILD b/community/calf/PKGBUILD index 5d87b4067..9e0919b60 100644 --- a/community/calf/PKGBUILD +++ b/community/calf/PKGBUILD @@ -6,7 +6,7 @@ pkgname=calf pkgver=0.0.19 pkgrel=3 pkgdesc='LV2/DSSI/LADSPA plug-ins suite and standalone JACK host' -arch=('x86_64' 'i686') +arch=('i686' 'x86_64' 'mips64el') url='http://calf.sf.net/' license=('LGPL') depends=('libglade' 'fftw' 'lash' 'dssi' 'fluidsynth' 'hicolor-icon-theme' 'desktop-file-utils') @@ -17,8 +17,13 @@ options=('!libtool') sha256sums=('1106e7e27bcd18d47fc58c952a4dbf6c7a763272e13b2b94cee6f1b2fb922cec') build() { + if [ "$CARCH" != "mips64el" ]; then + confflags="--enable-sse" + else + confflags="" + fi cd $srcdir/$pkgname-$pkgver - ./configure --prefix=/usr --enable-experimental --enable-sse + ./configure --prefix=/usr --enable-experimental ${confflags} make } |