diff options
Diffstat (limited to 'extra/festival/PKGBUILD')
-rw-r--r-- | extra/festival/PKGBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extra/festival/PKGBUILD b/extra/festival/PKGBUILD index 1124eb914..c33899998 100644 --- a/extra/festival/PKGBUILD +++ b/extra/festival/PKGBUILD @@ -8,7 +8,7 @@ pkgver=2.1 _suffix=release pkgrel=3 pkgdesc="A general multi-lingual speech synthesis system" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.cstr.ed.ac.uk/projects/festival/" license=('BSD' 'GPL' 'custom') depends=('perl') @@ -37,7 +37,7 @@ build() { # Build Speech Tools first cd "$srcdir/speech_tools" patch -Np1 -i "$srcdir/speechconfig.patch" - ./configure --prefix=/usr --sysconfdir=/etc + ./configure --prefix=/usr --sysconfdir=/etc --build=$CHOST --host=$CHOST make OPTIMISE_CXXFLAGS="${CXXFLAGS}" OPTIMISE_CCFLAGS="${CFLAGS}" # Build Festival itself @@ -47,7 +47,7 @@ build() { # Avoid make failure on making scripts and docs sed -i "s#examples bin doc#examples#" Makefile - ./configure --prefix=/usr --sysconfdir=/etc + ./configure --prefix=/usr --sysconfdir=/etc --build=$CHOST --host=$CHOST make OPTIMISE_CXXFLAGS="${CXXFLAGS}" OPTIMISE_CCFLAGS="${CFLAGS}" } |