mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-01-05 23:17:57 +00:00
23 lines
830 B
Makefile
23 lines
830 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2022-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="fuse3"
|
|
PKG_VERSION="3.16.2"
|
|
PKG_SHA256="f797055d9296b275e981f5f62d4e32e089614fc253d1ef2985851025b8a0ce87"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://github.com/libfuse/libfuse/"
|
|
PKG_URL="https://github.com/libfuse/libfuse/releases/download/fuse-${PKG_VERSION}/fuse-${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain systemd"
|
|
PKG_LONGDESC="FUSE is an interface for userspace programs to export a filesystem to the Linux kernel."
|
|
|
|
PKG_MESON_OPTS_TARGET="-Ddisable-mtab=false \
|
|
-Dutils=true \
|
|
-Dexamples=false \
|
|
-Duseroot=false \
|
|
-Dtests=false"
|
|
|
|
post_makeinstall_target() {
|
|
rm -rf ${INSTALL}/etc
|
|
rm -rf ${INSTALL}/usr/lib/udev
|
|
}
|