* cifsd-tools: fix Assignment of a signed value which has type 'long' * init: convert hide_dot_files to yes/no option * 'read only = no' seems bugged for cifsd/smb.conf, so fix via 'writeable = yes' Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
59 lines
1.8 KiB
Makefile
59 lines
1.8 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=cifsd-tools
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/cifsd-team/cifsd-tools.git
|
|
PKG_SOURCE_DATE:=2019-11-25
|
|
PKG_SOURCE_VERSION:=49d0c40129fe22161999ffb7e059b90089f23078
|
|
PKG_MIRROR_HASH:=cd3702f1387ab643233200dcf5c244989b6d6efa196c69e842791e434eb3eea7
|
|
|
|
PKG_MAINTAINER:=Andy Walsh <andy.walsh44+github@gmail.com>
|
|
PKG_LICENSE:=GPL-2.0-or-later
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_REMOVE_FILES:=autogen.sh
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
|
|
define Package/cifsd-tools
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=Filesystem
|
|
TITLE:=Kernel CIFS/SMB server support and userspace tools
|
|
URL:=https://github.com/cifsd-team/cifsd-tools
|
|
DEPENDS:=+kmod-fs-cifsd +glib2 +libnl-core +libnl-genl
|
|
endef
|
|
|
|
define Package/cifsd-tools/description
|
|
Userspace tools (cifsd, cifsuseradd, cifsshareadd) for the CIFS/SMB kernel fileserver.
|
|
The config file location is /etc/cifs/smb.conf
|
|
endef
|
|
|
|
define Package/cifsd-tools/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libcifsdtools.so* $(1)/usr/lib/
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/{cifsuseradd,cifsshareadd,cifsd} $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/etc/config $(1)/etc/cifs $(1)/etc/init.d
|
|
$(INSTALL_CONF) ./files/cifsd.config $(1)/etc/config/cifsd
|
|
$(INSTALL_DATA) ./files/smb.conf.template $(1)/etc/cifs/
|
|
$(INSTALL_BIN) ./files/cifsd.init $(1)/etc/init.d/cifsd
|
|
# copy examples until we have a wiki page
|
|
$(INSTALL_DATA) ./files/cifsd.config.example $(1)/etc/cifs/
|
|
$(INSTALL_DATA) ./files/smb.conf.help $(1)/etc/cifs/
|
|
endef
|
|
|
|
define Package/cifsd-tools/conffiles
|
|
/etc/config/cifsd
|
|
/etc/cifs/smb.conf.template
|
|
/etc/cifs/smb.conf
|
|
/etc/cifs/cifsdpwd.db
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,cifsd-tools))
|