mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-21 23:56:20 +00:00
e6ddb930f0
release notes: - https://github.com/plougher/squashfs-tools/releases/tag/4.6 - https://github.com/plougher/squashfs-tools/releases/tag/4.6.1
31 lines
1.1 KiB
Makefile
31 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="squashfs-tools"
|
|
PKG_VERSION="4.6.1"
|
|
PKG_SHA256="94201754b36121a9f022a190c75f718441df15402df32c2b520ca331a107511c"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://github.com/plougher/squashfs-tools"
|
|
PKG_URL="https://github.com/plougher/squashfs-tools/archive/${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_HOST="ccache:host zlib:host lzo:host xz:host zstd:host"
|
|
PKG_NEED_UNPACK="$(get_pkg_directory zlib) $(get_pkg_directory lzo) $(get_pkg_directory xz) $(get_pkg_directory zstd)"
|
|
PKG_LONGDESC="Tools for squashfs, a highly compressed read-only filesystem for Linux."
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
make_host() {
|
|
make -C squashfs-tools \
|
|
mksquashfs \
|
|
XZ_SUPPORT=1 \
|
|
LZO_SUPPORT=1 \
|
|
ZSTD_SUPPORT=1 \
|
|
XATTR_SUPPORT=0 \
|
|
XATTR_DEFAULT=0 \
|
|
INCLUDEDIR="-I. -I${TOOLCHAIN}/include"
|
|
}
|
|
|
|
makeinstall_host() {
|
|
mkdir -p ${TOOLCHAIN}/bin
|
|
cp squashfs-tools/mksquashfs ${TOOLCHAIN}/bin
|
|
}
|