summaryrefslogtreecommitdiff
path: root/community/luajit/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/luajit/PKGBUILD')
-rw-r--r--community/luajit/PKGBUILD7
1 files changed, 5 insertions, 2 deletions
diff --git a/community/luajit/PKGBUILD b/community/luajit/PKGBUILD
index 2657bc573..708c4736e 100644
--- a/community/luajit/PKGBUILD
+++ b/community/luajit/PKGBUILD
@@ -8,7 +8,7 @@ pkgname=luajit
pkgver=2.0.1
pkgrel=2
pkgdesc='Just-in-time compiler and drop-in replacement for Lua 5.1'
-arch=('i686' 'x86_64')
+arch=('i686' 'x86_64' 'mips64el')
url='http://luajit.org/'
license=('MIT')
depends=('gcc-libs')
@@ -19,8 +19,11 @@ sha256sums=('2371cceb53453d8a7b36451e6a0ccdb66236924545d6042ddd4c34e9668990c0'
build() {
cd $srcdir/LuaJIT-$pkgver
+
+ [ "$CARCH" = "mips64el" ] && extra="XCFLAGS=-DLUAJIT_DISABLE_JIT"
+
patch -Np1 -i $srcdir//v2.0.1_hotfix1.patch
- make amalg PREFIX=/usr
+ make amalg PREFIX=/usr $extra
}
package() {