mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-04-02 10:41:46 -04:00
30 lines
1.2 KiB
Makefile
30 lines
1.2 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2024-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="cifs-utils"
|
|
PKG_VERSION="7.2"
|
|
PKG_SHA256="12564a33ed67c241d8c847924eaf04a5ae0baf19288837094dab15739d54017e"
|
|
PKG_LICENSE="GPL-3.0-or-later"
|
|
PKG_SITE="https://wiki.samba.org/index.php/LinuxCIFS_utils"
|
|
PKG_URL="https://download.samba.org/pub/linux-cifs/cifs-utils/cifs-utils-${PKG_VERSION}.tar.bz2"
|
|
PKG_DEPENDS_TARGET="toolchain talloc"
|
|
PKG_LONGDESC="Linux CIFS userspace utilities"
|
|
PKG_BUILD_FLAGS="-cfg-libs"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="ac_cv_func_malloc_0_nonnull=yes \
|
|
ac_cv_func_realloc_0_nonnull=yes \
|
|
--disable-cifsupcall \
|
|
--disable-cifscreds \
|
|
--disable-cifsidmap \
|
|
--disable-cifsacl \
|
|
--disable-smbinfo \
|
|
--disable-pythontools \
|
|
--disable-pam \
|
|
--disable-man \
|
|
--disable-systemd"
|
|
|
|
makeinstall_target() {
|
|
mkdir -p "${INSTALL}/usr/sbin/"
|
|
cp -PR mount.cifs "${INSTALL}/usr/sbin/"
|
|
ln -s mount.cifs "${INSTALL}/usr/sbin/mount.smb3"
|
|
}
|