void-packages/srcpkgs/lua/template
2013-04-10 16:50:24 +02:00

58 lines
1.7 KiB
Plaintext

# Template file for 'lua'
pkgname=lua
version=5.1.5
revision=2
patch_args="-Np1"
distfiles="http://www.lua.org/ftp/$pkgname-$version.tar.gz"
makedepends="ncurses-devel readline-devel"
short_desc="Lua is a powerful, fast, lightweight, embeddable scripting language."
maintainer="Robert Djubek <envy1988@gmail.com>"
homepage="http://www.lua.org"
license="MIT"
checksum=2640fc56a795f29d28ef15e13c34a47e223960b0240e8cb0a82d9b0738695333
long_desc="
Lua combines simple procedural syntax with powerful data description
constructs based on associative arrays and extensible semantics. Lua
is dynamically typed, runs by interpreting bytecode for a register-based
virtual machine, and has automatic memory management with incremental
garbage collection, making it ideal for configuration, scripting, and
rapid prototyping."
do_build() {
export CFLAGS="$CFLAGS -fPIC"
make CC="$CC" RANLIB="$RANLIB" \
INSTALL_DATA="cp -d" LUA_SO=liblua.so ${makejobs} linux
}
do_install() {
make INSTALL_DATA="cp -d" INSTALL_TOP="${DESTDIR}/usr" \
TO_LIB="liblua.a liblua.so liblua.so.5.1" \
INSTALL_MAN="${DESTDIR}/usr/share/man/man1" install
install -Dm 644 etc/lua.pc ${DESTDIR}/usr/lib/pkgconfig/lua.pc
install -Dm644 COPYRIGHT \
${DESTDIR}/usr/share/licenses/${pkgname}/COPYRIGHT
# Install the documentation
mkdir -p ${DESTDIR}/usr/share/doc/lua
cp -R doc/* ${DESTDIR}/usr/share/doc/lua
cd ${DESTDIR}/usr/lib && ln -sf liblua.so.5.1 liblua.so.5
}
lua-devel_package() {
depends="ncurses-devel readline-devel lua>=${version}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.a"
vmove usr/lib/pkgconfig
vmove usr/share/doc
}
}
lua_package() {
pkg_install() {
vmove usr
}
}