mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
31 lines
1.2 KiB
Makefile
31 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.0"
|
|
PKG_SHA256="0defaab85bd3ea46ffc45ab41fb0d0ad54d05ae2cfaa7e503de86d4f12bc8161"
|
|
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"
|
|
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"
|
|
}
|