blob: f2b39c03e438e48e8dc2cc4e57436399fefacfc7 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Maintainer: Philipp Gesang <phg42.2a@gmail.com>
# Derived from the Lua 5.2 and 5.1 PKGBUILDs in extra which lists
# these guys as contributors:
# Contributor: Sébastien Luttringer <seblu@archlinux.org>
# Contributor: Juergen Hoetzel <juergen@archlinux.org>
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
#
# Before trying this out make sure you read the changelog:
#
# http://www.lua.org/work/doc/#changes
#
pkgname=lua53
pkgver=5.3.0_work3
pkgrel=1
pkgdesc='Powerful light-weight programming language designed for extending applications, version 5.3 working draft'
arch=('i686' 'x86_64')
url='http://www.lua.org/'
depends=('readline')
license=('MIT')
options=('!makeflags' '!emptydirs')
source=('http://www.lua.org/work/lua-5.3.0-work3.tar.gz'
'liblua.so.patch'
'LICENSE'
'lua.pc')
sha512sums=('28eaacc64d411ac8cd554baec7d613cdeff8af74fb6abeeacdc86831fedf4c244723160e6b3939206ea056e56b32ae802be2aac029b3dac53778cc30eaa93f78'
'bcb85d5863685473dcff1e615cfbadaede09440e4fcab1d32ea1cd6fca543e4e549084901cc5df72089ef145e213a763c26570637c539b7689b6e4e5cd129941'
'4f2dcdf727fa87cb1a89e8f9e678b6245b7af1722c74d4c04adc865745c80a0ce292fd5c18787fb3c00ec44bfa07a49ffed2fcb71008a84f4464933ab4bd3d38'
'c91d5e7b1468ec773a4863fd8f360e5379626668242b856605fab634d5aa003e247992f23a6f41b511481b5468bd644fcb18e66e6f1f2514688f5653f06d1186')
build() {
cd "lua-${pkgver/_/-}"
patch -p1 -i "$srcdir/liblua.so.patch"
export CFLAGS="$CFLAGS -fPIC"
sed "s/%VER%/${pkgver%.*}/g;s/%REL%/$pkgver/g" ../lua.pc > lua.pc
sed -r -e '/^LUA_(SO|A|T)=/ s/lua/lua5.3/' -e '/^LUAC_T=/ s/luac/luac5.3/' -i src/Makefile
make MYCFLAGS="$CFLAGS" MYLDFLAGS="$LDFLAGS" linux
}
package() {
cd "lua-${pkgver/_/-}"
make \
TO_BIN="lua5.3 luac5.3" \
TO_LIB="liblua5.3.a liblua5.3.so liblua5.3.so.5.3 liblua5.3.so.5.3.0" \
INSTALL_DATA="cp -d" \
INSTALL_TOP="$pkgdir/usr" \
INSTALL_INC="$pkgdir/usr/include/lua5.3" \
INSTALL_MAN="$pkgdir/usr/share/man/man1" \
install
install -Dm644 lua.pc "$pkgdir/usr/lib/pkgconfig/lua5.3.pc"
install -d "$pkgdir/usr/share/doc/lua5.3"
install -m644 doc/*.{gif,png,css,html} "$pkgdir/usr/share/doc/lua5.3"
install -D -m644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
ln -s liblua5.3.so "$pkgdir/usr/lib/liblua.so.5.3"
ln -s liblua5.3.so "$pkgdir/usr/lib/liblua.so.$pkgver"
cd "$pkgdir/usr/share/man/man1"
mv lua.1 lua5.3.1
mv luac.1 luac5.3.1
}
# vim:set ts=2 sw=2 et:
|