mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 02:37:17 +08:00
35 lines
1.3 KiB
Bash
35 lines
1.3 KiB
Bash
# $Id: PKGBUILD 42988 2009-06-19 06:21:03Z allan $
|
|
# Maintainer: Juergen Hoetzel <juergen@archlinux.org>
|
|
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
|
|
|
|
pkgname=lua
|
|
pkgver=5.1.4
|
|
pkgrel=4
|
|
pkgdesc="A powerful light-weight programming language designed for extending applications."
|
|
arch=(i686 x86_64)
|
|
url="http://www.lua.org/"
|
|
depends=('readline' 'ncurses')
|
|
license=(MIT)
|
|
options=('!makeflags')
|
|
source=($url/ftp/$pkgname-$pkgver.tar.gz $pkgname-arch.patch 'lua-5.1-cflags.diff')
|
|
md5sums=('d0870f2de55d59c1c8419f36e8fac150'
|
|
'1bd1164a19abf9165e231ba0d8a0bbc7'
|
|
'249582bf1fd861ccf492d2c35a9fe732')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
patch -p1 -i $startdir/src/$pkgname-arch.patch || return 1
|
|
|
|
[ "$CARCH" == "x86_64" ] && patch -Np1 -i ../lua-5.1-cflags.diff
|
|
[ "$CARCH" == "x86_64" ] && export CFLAGS="$CFLAGS -fPIC"
|
|
make INSTALL_DATA="cp -d" TO_LIB="liblua.a liblua.so liblua.so.5.1" LUA_SO=liblua.so INSTALL_TOP=$startdir/pkg/usr INSTALL_MAN=$startdir/pkg/usr/share/man/man1 \
|
|
linux install || return 1
|
|
install -D -m 644 etc/lua.pc $startdir/pkg/usr/lib/pkgconfig/lua.pc
|
|
install -D -m644 COPYRIGHT $startdir/pkg/usr/share/licenses/$pkgname/COPYRIGHT
|
|
|
|
# Install the documentation
|
|
mkdir -p $pkgdir/usr/share/doc/lua
|
|
cp -R doc/* $pkgdir/usr/share/doc/lua
|
|
}
|
|
# vim: ts=2 sw=2 et ft=sh
|