# Maintainer: Lukas Fleischer <lfleischer@archlinux.org>
# Maintainer: Daurnimator <daurnimator@archlinux.org>
# Maintainer: Caleb Maclennan <caleb@alerque.com>
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Chris Brannon <chris@the-brannons.com>
# Contributor: Paulo Matias <matiasΘarchlinux-br·org>
# Contributor: Anders Bergh <anders1@gmail.com>
pkgname=luajit
# LuaJIT has a "rolling release" where you should follow git HEAD
_commit=5790d253972c9d78a0c2aece527eda5b134bbbf7
# The patch version is the timestamp of the above git commit, obtain via `git show -s --format=%ct`
_ct=1713773202
pkgver="2.1.${_ct}"
pkgrel=1
pkgdesc='Just-in-time compiler and drop-in replacement for Lua 5.1'
arch=('armv7h')
url='https://luajit.org/'
license=('MIT')
depends=('gcc-libs')
source=("LuaJIT-${_commit}.tar.gz::https://github.com/LuaJIT/LuaJIT/archive/${_commit}.tar.gz")
md5sums=('54b57aa99e3ec1c96dc51711a31c1be1')
sha256sums=('a299cd389c4568cff4c900e9e86fb56b1f422bf38497a695f6a96e37607a6645')
b2sums=('9b10b382146a0b83358c847d4233fa4ccf23e431a6cedaf59d5c09e628a3c575e3c5bbdfd2081cdcc736db4ea369defdc018b3121b91048f8e8d490fa7534717')
build() {
cd "LuaJIT-${_commit}"
# Avoid early stripping
make amalg PREFIX=/usr BUILDMODE=dynamic TARGET_STRIP=" @:"
}
check() {
cd "LuaJIT-${_commit}"
# Make sure that _ct was updated
test "${_ct}" == "$(cat .relver)"
}
package() {
cd "LuaJIT-${_commit}"
make install DESTDIR="$pkgdir" PREFIX=/usr
install -Dm644 COPYRIGHT "$pkgdir/usr/share/licenses/$pkgname/COPYRIGHT"
}