mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-23 12:10:06 +02:00
De-Lint recipes.
* libtool Minor cosmetics. Lint warning "patch not referenced" is true, but it nevertheless builds... Maybe those unused patches should be removed? * libzip Removed "." from SUMMARY. Minor cosmetics. * linaro_qemu Removed "." from SUMMARY. Minor cosmetics. * llvm Removed "." from SUMMARY. Minor cosmetics. Uncommented the ARCHITECTURES of llvm-3.0. Hope that's OK... * lm4tools Removed "." from SUMMARY. Minor cosmetics. * love Removed "." and improved SUMMARY/DESCRIPTION. Minor cosmetics. * ltp Removed "." and improved SUMMARY/DESCRIPTION. Minor cosmetics. * lua Removed "." and improved SUMMARY/DESCRIPTION. Minor cosmetics. * luarocks Removed "." from SUMMARY. Minor cosmetics. * lyx Removed "." from SUMMARY. Minor cosmetics.
This commit is contained in:
@@ -1,11 +1,22 @@
|
||||
SUMMARY="Lua is a powerful, fast, light-weight, embeddable scripting language."
|
||||
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"
|
||||
SOURCE_URI="http://www.lua.org/ftp/lua-5.1.4.tar.gz"
|
||||
CHECKSUM_SHA256="b038e225eaf2a5b57c9bcc35cd13aa8c6c8288ef493d52970c9545074098af3a"
|
||||
LICENSE="MIT"
|
||||
REVISION="6"
|
||||
|
||||
ARCHITECTURES="x86 x86_gcc2"
|
||||
SECONDARY_ARCHITECTURES="x86 x86_gcc2"
|
||||
|
||||
SOURCE_URI="http://www.lua.org/ftp/lua-5.1.4.tar.gz"
|
||||
CHECKSUM_SHA256="b038e225eaf2a5b57c9bcc35cd13aa8c6c8288ef493d52970c9545074098af3a"
|
||||
COPYRIGHT="1994-2009, Lua.org, PUC-Rio"
|
||||
PATCHES="lua-5.1.4.patchset"
|
||||
|
||||
PROVIDES="
|
||||
lua${secondaryArchSuffix} = $portVersion compat >= 5.1
|
||||
cmd:lua${secondaryArchSuffix} = $portVersion compat >= 5.1
|
||||
@@ -16,13 +27,23 @@ PROVIDES="
|
||||
REQUIRES="
|
||||
haiku${secondaryArchSuffix}
|
||||
"
|
||||
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
|
||||
"
|
||||
BUILD_REQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
"
|
||||
BUILD_PREREQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
cmd:make
|
||||
cmd:gcc${secondaryArchSuffix}
|
||||
"
|
||||
|
||||
PATCHES="lua-5.1.4.patchset"
|
||||
|
||||
BUILD()
|
||||
{
|
||||
@@ -55,24 +76,3 @@ INSTALL()
|
||||
|
||||
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.
|
||||
"
|
||||
|
||||
@@ -1,10 +1,22 @@
|
||||
SUMMARY="Lua is a powerful, fast, light-weight, embeddable scripting language."
|
||||
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"
|
||||
SOURCE_URI="http://www.lua.org/ftp/lua-$portVersion.tar.gz"
|
||||
CHECKSUM_SHA256="64304da87976133196f9e4c15250b70f444467b6ed80d7cfd7b3b982b5177be5"
|
||||
LICENSE="MIT"
|
||||
REVISION="7"
|
||||
|
||||
ARCHITECTURES="x86 x86_gcc2"
|
||||
SECONDARY_ARCHITECTURES="x86"
|
||||
|
||||
SOURCE_URI="http://www.lua.org/ftp/lua-$portVersion.tar.gz"
|
||||
CHECKSUM_SHA256="64304da87976133196f9e4c15250b70f444467b6ed80d7cfd7b3b982b5177be5"
|
||||
COPYRIGHT="1994-2012, Lua.org, PUC-Rio"
|
||||
PATCHES="lua-$portVersion.patchset"
|
||||
|
||||
PROVIDES="
|
||||
lua$secondaryArchSuffix = $portVersion compat >= 5.2
|
||||
cmd:lua$secondaryArchSuffix = $portVersion compat >= 5.2
|
||||
@@ -12,27 +24,24 @@ PROVIDES="
|
||||
cmd:luac$secondaryArchSuffix = $portVersion compat >= 5.2
|
||||
lib:liblua$secondaryArchSuffix = $portVersion compat >= 5.2
|
||||
"
|
||||
|
||||
REQUIRES="
|
||||
haiku$secondaryArchSuffix
|
||||
"
|
||||
BUILD_PREREQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
cmd:make
|
||||
cmd:gcc$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
|
||||
"
|
||||
|
||||
PATCHES="lua-$portVersion.patchset"
|
||||
BUILD_REQUIRES="
|
||||
haiku${secondaryArchSuffix}_devel
|
||||
"
|
||||
BUILD_PREREQUIRES="
|
||||
cmd:make
|
||||
cmd:gcc$secondaryArchSuffix
|
||||
"
|
||||
|
||||
BUILD()
|
||||
{
|
||||
@@ -55,12 +64,3 @@ INSTALL()
|
||||
prepareInstalledDevelLib liblua52
|
||||
packageEntries devel $developDir
|
||||
}
|
||||
LICENSE="MIT"
|
||||
COPYRIGHT="1994-2012, 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.
|
||||
"
|
||||
|
||||
Reference in New Issue
Block a user