mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-07-12 18:19:42 -07:00
8a132d0340
Includes following patches (post 2.9.9 - https://github.com/libfuse/libfuse/commits/fuse_2_9_bugfix/) util/ulockmgr_server.c: conditionally define closefrom (fix glibc-2.34+) - https://github.com/libfuse/libfuse/commit/6d55007027dfe7b75a74899f497f075046cc5404 Correct errno comparison - https://github.com/libfuse/libfuse/commit/5d38afc8a5b4a2a6e27aad7a1840046e99cd826d Whitelist UFSD (backport to 2.9 branch) - https://github.com/libfuse/libfuse/commit/5a43d0f724c56f8836f3f92411e0de1b5f82db32 configure.ac needs to include GETTEXT to generate config.rpath
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) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="fuse"
|
|
PKG_VERSION="5a43d0f724c56f8836f3f92411e0de1b5f82db32" # 2.9.9+
|
|
PKG_SHA256="1df88a204e1673e29112f1ee4efe6b3cd4de2ae78945838e406ead0fe24ec5f1"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://github.com/libfuse/libfuse/"
|
|
PKG_URL="https://github.com/libfuse/libfuse/archive/${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="FUSE provides a simple interface for userspace programs to export a virtual filesystem to the Linux kernel."
|
|
PKG_TOOLCHAIN="autotools"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="MOUNT_FUSE_PATH=/usr/sbin \
|
|
--enable-lib \
|
|
--enable-util \
|
|
--disable-example \
|
|
--enable-mtab \
|
|
--disable-rpath \
|
|
--with-gnu-ld"
|
|
|
|
post_makeinstall_target() {
|
|
rm -rf ${INSTALL}/etc/init.d
|
|
rm -rf ${INSTALL}/etc/udev
|
|
}
|