mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-10 13:50:08 +02:00
* Referring the current haiku version explicitly is not needed, since the RequiresUpdater takes care of setting the version of Haiku used for building a package.
79 lines
2.3 KiB
Plaintext
79 lines
2.3 KiB
Plaintext
SUMMARY="Lua is a powerful, fast, light-weight, embeddable scripting language."
|
|
HOMEPAGE="http://www.lua.org"
|
|
SRC_URI="http://www.lua.org/ftp/lua-5.1.4.tar.gz"
|
|
CHECKSUM_SHA256="b038e225eaf2a5b57c9bcc35cd13aa8c6c8288ef493d52970c9545074098af3a"
|
|
REVISION="6"
|
|
ARCHITECTURES="x86 x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86 x86_gcc2"
|
|
|
|
PROVIDES="
|
|
lua${secondaryArchSuffix} = $portVersion compat >= 5.1
|
|
cmd:lua${secondaryArchSuffix} = $portVersion compat >= 5.1
|
|
cmd:lua5.1${secondaryArchSuffix} = $portVersion compat >= 5.1
|
|
cmd:luac${secondaryArchSuffix} = $portVersion compat >= 5.1
|
|
lib:liblua${secondaryArchSuffix} = $portVersion compat >= 5.1
|
|
"
|
|
REQUIRES="
|
|
haiku${secondaryArchSuffix}
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
cmd:make
|
|
cmd:gcc${secondaryArchSuffix}
|
|
"
|
|
|
|
PATCHES="lua-5.1.4.patchset"
|
|
|
|
BUILD()
|
|
{
|
|
make haiku
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install INSTALL_TOP="$prefix" INSTALL_MAN="$manDir/man1" \
|
|
INSTALL_INC="$includeDir/lua5.1" INSTALL_LMOD="$dataDir/lua/5.1" \
|
|
INSTALL_LIB="$libDir" INSTALL_BIN="$binDir"
|
|
|
|
mkdir -p $libDir/pkgconfig
|
|
cp etc/lua.pc $libDir/pkgconfig/lua.pc
|
|
|
|
ln -s liblua.so $libDir/liblua.so.5.1
|
|
ln -s liblua.a $libDir/liblua5.1.a
|
|
|
|
mv $binDir/lua $binDir/lua5.1
|
|
ln -s $binDir/lua5.1 $binDir/lua
|
|
|
|
prepareInstalledDevelLib liblua
|
|
prepareInstalledDevelLib liblua5.1
|
|
fixPkgconfig
|
|
|
|
# The includes are in a subdirectory of includeDir, and fixPkgconfig breaks
|
|
# that.
|
|
sed -i -e "s,^includedir=.*,includedir=$prefix/$relativeIncludeDir/lua5.1," \
|
|
$developLibDir/pkgconfig/lua.pc
|
|
|
|
packageEntries devel $developDir
|
|
}
|
|
|
|
PROVIDES_devel="
|
|
lua${secondaryArchSuffix}_devel = $portVersion compat >= 5.1
|
|
devel:liblua$secondaryArchSuffix = $portVersion compat >= 5.1
|
|
devel:liblua5.1$secondaryArchSuffix = $portVersion compat >= 5.1
|
|
"
|
|
|
|
REQUIRES_devel="
|
|
lua$secondaryArchSuffix == $portVersion
|
|
"
|
|
|
|
LICENSE="MIT"
|
|
COPYRIGHT="1994-2009, Lua.org, PUC-Rio"
|
|
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.
|
|
"
|