iup-stack-solus/lua/package.yml

25 lines
1.3 KiB
YAML
Raw Normal View History

2022-12-29 18:07:43 +00:00
name : lua
version : 5.3.4
2023-02-04 10:45:22 +00:00
release : 7
2022-12-29 18:07:43 +00:00
source :
- https://www.lua.org/ftp/lua-5.3.4.tar.gz : f681aa518233bc407e23acf0f5887c884f17436f000d453b2491a9f11a52400c
2023-02-04 10:45:22 +00:00
homepage : https://www.lua.org
2022-12-29 18:07:43 +00:00
license : MIT
component : programming
summary : Lightweight programming language
description: |
Lua is a powerful light-weight programming language designed for extending applications. It is also frequently used as a general-purpose, stand-alone language. Lua is implemented as a small library of C functions, written in ANSI C, and compiles unmodified in all known platforms. The implementation goals are simplicity, efficiency, portability, and low embedding cost. The result is a fast language engine with small footprint, making it ideal in embedded systems too.
patterns :
- devel : [/usr/bin]
setup : |
unset LD_AS_NEEDED
%patch -p1 < $pkgfiles/0001-Use-shared-libraries-and-proper-prefix.patch
build : |
unset LD_AS_NEEDED
%make linux
install : |
unset LD_AS_NEEDED
%make_install INSTALL_TOP=$installdir/usr TO_LIB="liblua.a liblua.so liblua.so.5.3 liblua.so.${version}" INSTALL_DATA="cp -d" INSTALL_MAN=$installdir/usr/share/man/man1
install -Dm00644 $pkgfiles/lua-5.3.pc $installdir/usr/lib/pkgconfig/lua-5.3.pc
ln -s lua-5.3.pc $installdir/usr/lib/pkgconfig/lua.pc