blob: 571cd7894cb020f2730ef933f0aae8e1669d6896 (
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
|
# $Id: PKGBUILD 181843 2013-04-04 12:42:25Z bpiotrowski $
# Maintainer: Sébastien Luttringer <seblu@archlinux.org>
# Contributor: Juergen Hoetzel <juergen@archlinux.org>
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
pkgname=lua
pkgver=5.2.2
pkgrel=1
pkgdesc='Powerful light-weight programming language designed for extending applications'
arch=('i686' 'x86_64')
url='http://www.lua.org/'
depends=('readline')
license=('MIT')
options=('!makeflags' '!emptydirs')
source=("http://www.lua.org/ftp/$pkgname-$pkgver.tar.gz"
'liblua.so.patch' 'lua.pc' 'LICENSE')
md5sums=('efbb645e897eae37cad4344ce8b0a614'
'bdc663c7b82ffc0b5df67611621fb625'
'e7ba6c2b695b0b84a5ea0cbff5fc9067'
'0e2bd67b909b9ff673da844ca3480df2')
build() {
cd $pkgname-$pkgver
patch -p1 -i "$srcdir/liblua.so.patch"
export CFLAGS="$CFLAGS -fPIC"
make MYCFLAGS="$CFLAGS" MYLDFLAGS="$LDFLAGS" linux
sed "s/%VER%/${pkgver%.*}/g;s/%REL%/$pkgver/g" ../lua.pc > lua.pc
}
package() {
cd $pkgname-$pkgver
make \
TO_LIB="liblua.a liblua.so liblua.so.5.2 liblua.so.5.2.1" \
INSTALL_DATA="cp -d" \
INSTALL_TOP="$pkgdir/usr" \
INSTALL_MAN="$pkgdir/usr/share/man/man1" \
install
install -Dm644 lua.pc "$pkgdir/usr/lib/pkgconfig/lua.pc"
# Install the documentation
install -d "$pkgdir/usr/share/doc/lua"
install -m644 doc/*.{gif,png,css,html} "$pkgdir/usr/share/doc/lua"
install -D -m644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
# vim:set ts=4 sw=4 et:
|