Difference between revisions of "Lua"

From CBLFS
Jump to navigationJump to search
 
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://www.lua.org/ftp/lua-5.1.1.tar.gz
+
| http://www.lua.org/ftp/lua-{{Lua-Version}}.tar.gz
 
|}
 
|}
  

Revision as of 15:36, 17 December 2006

Download Source: http://www.lua.org/ftp/lua-5.1.4.tar.gz

Dependencies

Non-Multilib

Compile the package:

make linux

Install the package

make INSTALL_TOP=/usr install

Multilib

32Bit

Compile the package:

make CC="gcc ${BUILD32}" linux

Install the package

make INSTALL_TOP=/usr install

N32

Compile the package:

make CC="gcc ${BUILDN32}" linux

Install the package

make INSTALL_TOP=/usr INSTALL_LIB=/usr/lib32 install

64Bit

Compile the package:

make CC="gcc ${BUILD64}" linux

Install the package

make INSTALL_TOP=/usr INSTALL_LIB=/usr/lib64 install