fuse3: initial package

This commit is contained in:
Rudi Heitbaum 2022-07-18 10:55:12 +00:00
parent 6285fc141b
commit 38936bdca5

View File

@ -0,0 +1,22 @@
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2022-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="fuse3"
PKG_VERSION="3.11.0"
PKG_SHA256="8982c4c521daf3974dda8a5d55d575c988da13a571970f00aea149eb54fdf14c"
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.xz"
PKG_DEPENDS_TARGET="toolchain"
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
}