diff options
Diffstat (limited to 'extra/sbcl/PKGBUILD')
-rw-r--r-- | extra/sbcl/PKGBUILD | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/extra/sbcl/PKGBUILD b/extra/sbcl/PKGBUILD index c2f2e789e..c3d022978 100644 --- a/extra/sbcl/PKGBUILD +++ b/extra/sbcl/PKGBUILD @@ -9,11 +9,13 @@ pkgver=1.0.55 pkgrel=1 pkgdesc="Steel Bank Common Lisp" url="http://www.sbcl.org/" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') license=('custom') depends=('glibc') provides=('common-lisp' 'cl-asdf') makedepends=('sbcl' 'texinfo') +[ "$CARCH" = "mips64el" ] && \ +makedepends=('clisp' 'texinfo') install=sbcl.install source=("http://downloads.sourceforge.net/project/sbcl/sbcl/$pkgver/$pkgname-$pkgver-source.tar.bz2" "arch-fixes.lisp") @@ -39,7 +41,11 @@ build() { (disable :largefile))) EOF - sh make.sh sbcl + if [ "$CARCH" = "mips64el" ]; then + sh make.sh clisp + else + sh make.sh sbcl + fi make -C doc/manual info } |