summaryrefslogtreecommitdiff
path: root/community/luajit/PKGBUILD
blob: d523e7815620dd985f4acda94f940674290ed87b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# $Id: PKGBUILD 81293 2012-12-16 11:27:38Z bpiotrowski $
# Maintainer:  Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
# Contributor: Chris Brannon <chris@the-brannons.com>
# Contributor: Paulo Matias <matiasΘarchlinux-br·org>
# Contributor: Anders Bergh <anders1@gmail.com>

pkgname=luajit
pkgver=2.0.0
pkgrel=3
pkgdesc='Just-in-time compiler and replacement for Lua 5.1'
arch=('i686' 'x86_64')
url='http://luajit.org/'
license=('MIT')
depends=('gcc-libs') 
source=(http://luajit.org/download/LuaJIT-${pkgver/rc/-rc}.tar.gz)
md5sums=('97a2b87cc0490784f54b64cfb3b8f5ad')

build() { 
  cd $srcdir/LuaJIT-$pkgver
  make amalg PREFIX=/usr
}

package() {
  cd $srcdir/LuaJIT-$pkgver
  make install DESTDIR=$pkgdir PREFIX=/usr

  install -Dm644 $srcdir/LuaJIT-$pkgver/COPYRIGHT \
                 $pkgdir/usr/share/licenses/$pkgname/COPYRIGHT
}