mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
27 lines
1.0 KiB
Makefile
27 lines
1.0 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"
|
|
PKG_VERSION="e38956b"
|
|
PKG_SHA256="d49241e238076ee56920c6aec31f0de7b41fe770d1b2c03d1714bbffb833a98f"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://git.kernel.org/pub/scm/fs/squashfs/squashfs-tools.git"
|
|
PKG_URL="https://git.kernel.org/pub/scm/fs/squashfs/squashfs-tools.git/snapshot/$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="A 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
|
|
}
|