mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-03-01 01:01:24 +00:00
update 2.5 (2021-01-24) to 2.6 (2021-02-06) log: https://github.com/madler/pigz/commits/master changelog (from pigz.c): - Add --huffman/-H and --rle/U strategy options - Fix issue when compiling for no threads - Fail silently on a broken pipe
26 lines
709 B
Makefile
26 lines
709 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="pigz"
|
|
PKG_VERSION="2.6"
|
|
PKG_SHA256="577673676cd5c7219f94b236075451220bae3e1ca451cf849947a2998fbf5820"
|
|
PKG_LICENSE="Other"
|
|
PKG_SITE="https://zlib.net/pigz/"
|
|
PKG_URL="https://github.com/madler/pigz/archive/v${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_HOST="make:host zlib:host"
|
|
PKG_LONGDESC="a parallel implementation of the gzip file compressor"
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
make_host() {
|
|
make CPPFLAGS="${CPPFLAGS} -I${TOOLCHAIN}/include" \
|
|
LDFLAGS="${LDFLAGS}" \
|
|
CXX="${CXX}" \
|
|
CC="${CC}" \
|
|
pigz
|
|
}
|
|
|
|
makeinstall_host() {
|
|
mkdir -p ${TOOLCHAIN}/bin
|
|
cp pigz ${TOOLCHAIN}/bin
|
|
}
|