Improved SUMMARY/DESCRIPTION and re-ordered blocks

This commit is contained in:
Humdinger
2015-08-20 19:00:14 +02:00
parent 5b3b9818bc
commit 18588b4916
26 changed files with 604 additions and 654 deletions

View File

@@ -1,12 +1,12 @@
SUMMARY="A portable lossless data compression library written in ANSI C"
DESCRIPTION="
LZO is a data compression library which is suitable for data de-/compression in \
real-time. This means it favours speed over compression ratio.
SUMMARY="A portable lossless data compression library"
DESCRIPTION="LZO is a data compression library which is suitable for data \
de-/compression in real-time. This means it favours speed over compression \
ratio.
LZO is written in ANSI C. Both the source code and the compressed data format \
are designed to be portable across platforms.
LZO implements a number of algorithms with the following features:
* Decompression is simple and *very* fast.
* Requires no memory for decompression.
* Compression is pretty fast.
@@ -18,14 +18,14 @@ a quite competitive compression ratio.
* There is also a compression level which needs only 8 kB for compression.
* Algorithm is thread safe.
* Algorithm is lossless.
* LZO supports overlapping compression and in-place decompression.
"
* LZO supports overlapping compression and in-place decompression."
HOMEPAGE="http://www.oberhumer.com/opensource/lzo/"
COPYRIGHT="1996-2011 Markus F.X.J Oberhumer"
LICENSE="GNU GPL v2"
REVISION="1"
SOURCE_URI="http://www.oberhumer.com/opensource/lzo/download/lzo-$portVersion.tar.gz"
CHECKSUM_SHA256="f294a7ced313063c057c504257f437c8335c41bfeed23531ee4e6a2b87bcb34c"
REVISION="1"
LICENSE="GNU GPL v2"
COPYRIGHT="1996-2011 Markus F.X.J Oberhumer"
ARCHITECTURES="x86_gcc2 x86 x86_64"
SECONDARY_ARCHITECTURES="x86 x86_gcc2"
@@ -36,8 +36,19 @@ PROVIDES="
REQUIRES="
haiku$secondaryArchSuffix
"
BUILD_PREREQUIRES="
PROVIDES_devel="
lzo${secondaryArchSuffix}_devel = $portVersion
devel:liblzo2$secondaryArchSuffix = 2.0.0 compat >= 2
"
REQUIRES_devel="
lzo$secondaryArchSuffix == $portVersion base
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
"
BUILD_PREREQUIRES="
cmd:gcc$secondaryArchSuffix
cmd:make
cmd:awk
@@ -61,11 +72,3 @@ TEST()
{
make check
}
PROVIDES_devel="
lzo${secondaryArchSuffix}_devel = $portVersion
devel:liblzo2$secondaryArchSuffix = 2.0.0 compat >= 2
"
REQUIRES_devel="
lzo$secondaryArchSuffix == $portVersion base
"