Files
haikuports/app-arch/lzop/lzop-1.04.recipe
waddlesplash 4f180bdb94 Utilize the new "all" ARCHITECTURES keyword in most recipes. (#6189)
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has,
is transformed into "all", and then the other entries in ARCHITECTURES
either dropped or rearranged appropriately.
2021-09-15 15:40:18 -04:00

47 lines
871 B
Bash

SUMMARY="A very fast file compressor"
DESCRIPTION="Lempel-Ziv-Oberhumer Packer, lzop is a file compressor similar \
to gzip. Its main advantages over gzip are much higher compression and \
decompression speed at the cost of some compression ratio."
HOMEPAGE="https://www.lzop.org/"
COPYRIGHT="1996-2017 Markus Franz Xaver
Johannes Oberhumer"
LICENSE="GNU GPL v2"
REVISION="2"
SOURCE_URI="https://www.lzop.org/download/lzop-$portVersion.tar.gz"
CHECKSUM_SHA256="7e72b62a8a60aff5200a047eea0773a8fb205caf7acbe1774d95147f305a2f41"
ARCHITECTURES="all"
PROVIDES="
lzop = $portVersion
cmd:lzop = $portVersion
"
REQUIRES="
haiku
lib:liblzo2
"
BUILD_REQUIRES="
haiku_devel
devel:liblzo2
"
BUILD_PREREQUIRES="
cmd:aclocal
cmd:autoconf
cmd:awk
cmd:gcc
cmd:make
"
BUILD()
{
autoreconf -vfi
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
make install
}