mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 21:30:08 +02:00
88 lines
2.5 KiB
Bash
88 lines
2.5 KiB
Bash
SUMMARY="A powerful, fast, light-weight, embeddable scripting language"
|
|
DESCRIPTION="
|
|
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."
|
|
HOMEPAGE="http://www.lua.org"
|
|
COPYRIGHT="1994-2012, Lua.org, PUC-Rio"
|
|
LICENSE="MIT"
|
|
REVISION="2"
|
|
SOURCE_URI="http://www.lua.org/ftp/lua-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="13c2fb97961381f7d06d5b5cea55b743c163800896fd5c5e2356201d3619002d"
|
|
PATCHES="lua-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="x86 x86_gcc2 x86_64"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
lua$secondaryArchSuffix = $portVersion compat >= 5.2
|
|
cmd:lua$secondaryArchSuffix = $portVersion compat >= 5.2
|
|
cmd:lua5.2$secondaryArchSuffix = $portVersion compat >= 5.2
|
|
cmd:luac$secondaryArchSuffix = $portVersion compat >= 5.2
|
|
lib:liblua$secondaryArchSuffix = $portVersion compat >= 5.2
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
|
|
PROVIDES_devel="
|
|
lua${secondaryArchSuffix}_devel = $portVersion compat >= 5.2
|
|
devel:liblua$secondaryArchSuffix = $portVersion compat >= 5.2
|
|
devel:liblua52$secondaryArchSuffix = $portVersion compat >= 5.2
|
|
"
|
|
REQUIRES_devel="
|
|
lua$secondaryArchSuffix == $portVersion
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
cmd:make
|
|
cmd:gcc$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make haiku MYCFLAGS="-DLUA_ROOT='\"$prefix/\"' -DLUA_LDIR='\"$dataDir/lua/5.2/\"'"
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install INSTALL_TOP="$prefix" INSTALL_MAN="$manDir/man1" \
|
|
INSTALL_INC="$includeDir/lua52" INSTALL_LMOD="$dataDir/lua/5.2" \
|
|
INSTALL_LIB="$libDir" INSTALL_BIN="$binDir"
|
|
|
|
ln -s liblua.so $libDir/liblua.so.5.2
|
|
ln -s liblua.a $libDir/liblua52.a
|
|
|
|
mv $binDir/lua $binDir/lua5.2
|
|
ln -s $binDir/lua5.2 $binDir/lua
|
|
|
|
mkdir -p $developLibDir/pkgconfig
|
|
cat > $developLibDir/pkgconfig/lua.pc << EOF
|
|
V=5.2
|
|
R=5.2.3
|
|
|
|
INSTALL_BIN=$binDir
|
|
INSTALL_INC=$includeDir
|
|
INSTALL_LIB=$libDir
|
|
INSTALL_MAN=$manDir
|
|
INSTALL_LMOD=${dataDir}/lua/\${V}
|
|
INSTALL_CMOD=${libDir}/lua/\${V}
|
|
exec_prefix=$prefix
|
|
libdir=$libDir
|
|
includedir=$includeDir
|
|
|
|
Name: Lua
|
|
Description: An Extensible Extension Language
|
|
Version: \${R}
|
|
Requires:
|
|
Libs: -L\${libdir} -llua
|
|
Cflags: -I\${includedir}/lua52
|
|
EOF
|
|
|
|
prepareInstalledDevelLib liblua
|
|
prepareInstalledDevelLib liblua52
|
|
packageEntries devel $developDir
|
|
}
|