Merge pull request #16244 from erdoukki/crowdsec
[feed/packages.git] / net / samba4 / Makefile
1 # Based partially on (wongsyrone/hbl0307106015) versions
2 include $(TOPDIR)/rules.mk
3
4 PKG_NAME:=samba
5 PKG_VERSION:=4.14.7
6 PKG_RELEASE:=$(AUTORELEASE)
7
8 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
9 PKG_SOURCE_URL:= \
10 https://ftp.gwdg.de/pub/samba/stable/ \
11 https://ftp.heanet.ie/mirrors/ftp.samba.org/stable/ \
12 https://ftp.riken.jp/net/samba/samba/stable/ \
13 http://www.nic.funet.fi/index/samba/pub/samba/stable/ \
14 http://samba.mirror.bit.nl/samba/ftp/stable/ \
15 https://download.samba.org/pub/samba/stable/
16 PKG_HASH:=6f50353f9602aa20245eb18ceb00e7e5ec793df0974aebd5254c38f16d8f1906
17
18 PKG_MAINTAINER:=Andy Walsh <andy.walsh44+github@gmail.com>
19 PKG_LICENSE:=GPL-3.0-only
20 PKG_LICENSE_FILES:=COPYING
21 PKG_CPE_ID:=cpe:/a:samba:samba
22
23 # samba4=(asn1_compile,compile_et) rpcsvc-proto=(rpcgen)
24 HOST_BUILD_DEPENDS:=python3/host rpcsvc-proto/host perl/host perl-parse-yapp/host
25 PKG_BUILD_DEPENDS:=samba4/host libtasn1/host
26
27 PKG_CONFIG_DEPENDS:= \
28 CONFIG_SAMBA4_SERVER_NETBIOS \
29 CONFIG_SAMBA4_SERVER_AVAHI \
30 CONFIG_SAMBA4_SERVER_VFS \
31 CONFIG_SAMBA4_SERVER_VFSX \
32 CONFIG_SAMBA4_SERVER_AD_DC \
33 CONFIG_PACKAGE_kmod-fs-btrfs \
34 CONFIG_PACKAGE_kmod-fs-xfs \
35 CONFIG_KERNEL_IO_URING
36
37 PYTHON3_PKG_BUILD:=0
38
39 include $(INCLUDE_DIR)/package.mk
40 include $(INCLUDE_DIR)/host-build.mk
41 include $(INCLUDE_DIR)/kernel.mk
42 include $(INCLUDE_DIR)/version.mk
43 include ../../lang/python/python3-host.mk
44 include ../../lang/python/python3-package.mk
45 include ../../lang/perl/perlver.mk
46
47 define Package/samba4/Default
48 SECTION:=net
49 CATEGORY:=Network
50 TITLE:=Samba $(PKG_VERSION)
51 URL:=https://www.samba.org/
52 endef
53
54 define Package/samba4/Default/description
55 The Samba software suite is a collection of programs that implements the
56 SMB/CIFS protocol for UNIX systems, allowing you to serve files and printers.
57
58 Samba 4 implements up-to protocol version SMB v3.1.1 (Win10), supports mDNS via AVAHI and a AD-DC setup via krb5.
59 NOTE: No cluster and printer support.
60 endef
61
62 define Package/samba4-libs
63 $(call Package/samba4/Default)
64 TITLE+= libs
65 DEPENDS:= +libtirpc +libreadline +libpopt +libcap +zlib +libgnutls +libtasn1 +libuuid +libopenssl +libpthread +KERNEL_IO_URING:liburing \
66 +PACKAGE_libpam:libpam \
67 +SAMBA4_SERVER_VFS:attr \
68 +SAMBA4_SERVER_AVAHI:libavahi-client \
69 +SAMBA4_SERVER_AD_DC:python3-cryptodome +SAMBA4_SERVER_AD_DC:libopenldap +SAMBA4_SERVER_AD_DC:jansson +SAMBA4_SERVER_AD_DC:libarchive +SAMBA4_SERVER_AD_DC:acl +SAMBA4_SERVER_AD_DC:attr
70 endef
71
72 define Package/samba4-server
73 $(call Package/samba4/Default)
74 TITLE+= server
75 DEPENDS:= +samba4-libs
76 CONFLICTS:=samba36-server
77 endef
78
79 define Package/samba4-server/description
80 installs: smbd (nmbd) smbpasswd pdbedit testparm (nmblookup) (smbcacls sharesec)
81 (samba samba-tool ntlm_auth samba-gpupdate samba_dnsupdate samba_kcc samba_spnupdate samba_upgradedns samba_downgrade_db)
82
83 This provides the basic fileserver service and is the minimum needed to serve file shares.
84 HINT: https://fitzcarraldoblog.wordpress.com/2016/10/17/a-correct-method-of-configuring-samba-for-browsing-smb-shares-in-a-home-network/
85 endef
86
87 define Package/samba4-server/config
88 source "$(SOURCE)/Config.in"
89 endef
90
91 define Package/samba4-client
92 $(call Package/samba4/Default)
93 TITLE+= client
94 DEPENDS:= +samba4-libs
95 endef
96
97 define Package/samba4-client/description
98 installs: cifsdd smbclient smbget
99
100 The smbclient program implements a simple ftp-like client for accessing SMB shares
101 endef
102
103 define Package/samba4-admin
104 $(call Package/samba4/Default)
105 TITLE+= admin tools
106 DEPENDS:= +samba4-libs
107 endef
108
109 define Package/samba4-admin/description
110 installs: net smbcontrol profiles rpcclient dbwrap_tool eventlogadm
111 ldbadd ldbdel ldbedit ldbmodify ldbrename ldbsearch
112 tdbbackup tdbdump tdbrestore tdbtool
113
114 Administration tools collection
115 endef
116
117 define Package/samba4-utils
118 $(call Package/samba4/Default)
119 TITLE+= utils
120 DEPENDS:= +samba4-libs
121 endef
122
123 define Package/samba4-utils/description
124 installs: smbstatus smbtree mvxattr smbtar smbcquotas
125
126 Utilities collection
127 endef
128
129 TARGET_CFLAGS += $(FPIC) -ffunction-sections -fdata-sections
130 TARGET_LDFLAGS += -Wl,--gc-sections,--as-needed
131 # dont mess with sambas private rpath!
132 RSTRIP:=:
133
134 CONFIGURE_VARS += \
135 CPP="$(TARGET_CROSS)cpp" \
136 XSLTPROC=false \
137 WAF_NO_PREFORK=1
138
139 CONFIGURE_CMD = ./buildtools/bin/waf
140 HOST_CONFIGURE_CMD = ./buildtools/bin/waf
141
142 # Strip options that WAF configure script does not recognize
143 CONFIGURE_ARGS:=$(filter-out \
144 --target=% \
145 --host=% \
146 --build=% \
147 --program-prefix=% \
148 --program-suffix=% \
149 --disable-nls \
150 --disable-ipv6 \
151 , $(CONFIGURE_ARGS))
152
153 HOST_CONFIGURE_ARGS:=$(filter-out \
154 --target=% \
155 --host=% \
156 --build=% \
157 --program-prefix=% \
158 --program-suffix=% \
159 --disable-nls \
160 --disable-ipv6 \
161 , $(HOST_CONFIGURE_ARGS))
162
163 # Waf needs the "configure" argument
164 CONFIGURE_ARGS:=configure $(CONFIGURE_ARGS)
165 HOST_CONFIGURE_ARGS:=configure $(HOST_CONFIGURE_ARGS)
166
167 CONFIGURE_ARGS += \
168 --hostcc="$(HOSTCC)" \
169 --cross-compile \
170 --cross-answers=cross-answers.txt \
171 --disable-cups \
172 --disable-iprint \
173 --disable-cephfs \
174 --disable-fault-handling \
175 --disable-glusterfs \
176 --disable-spotlight \
177 --enable-fhs \
178 --without-automount \
179 --without-iconv \
180 --without-lttng \
181 --without-ntvfs-fileserver \
182 --without-pam \
183 --without-systemd \
184 --without-utmp \
185 --without-dmapi \
186 --without-fam \
187 --without-gettext \
188 --without-regedit \
189 --without-gpgme
190
191 HOST_CONFIGURE_ARGS += \
192 --hostcc="$(HOSTCC)" \
193 --disable-cups \
194 --disable-iprint \
195 --disable-cephfs \
196 --disable-fault-handling \
197 --disable-glusterfs \
198 --disable-spotlight \
199 --disable-rpath \
200 --disable-rpath-install \
201 --disable-rpath-private-install \
202 --enable-fhs \
203 --without-automount \
204 --without-iconv \
205 --without-lttng \
206 --without-ntvfs-fileserver \
207 --without-pam \
208 --without-systemd \
209 --without-utmp \
210 --without-dmapi \
211 --without-fam \
212 --without-gettext \
213 --without-regedit \
214 --without-gpgme
215
216 HOST_CONFIGURE_ARGS += --disable-avahi --without-quotas --without-acl-support --without-winbind \
217 --without-ad-dc --without-json --without-libarchive --disable-python --nopyc --nopyo \
218 --without-dnsupdate --without-ads --without-ldap --without-ldb-lmdb
219
220 # Optional AES-NI support - https://lists.samba.org/archive/samba-technical/2017-September/122738.html
221 # Support for Nettle wasn't comitted
222 ifdef CONFIG_TARGET_x86_64
223 CONFIGURE_ARGS += --accel-aes=intelaesni
224 else
225 CONFIGURE_ARGS += --accel-aes=none
226 endif
227
228 CONFIGURE_ARGS += \
229 --with-lockdir=/var/lock \
230 --with-logfilebase=/var/log \
231 --with-piddir=/var/run \
232 --with-privatedir=/etc/samba
233
234 # features
235 ifeq ($(CONFIG_SAMBA4_SERVER_VFS),y)
236 CONFIGURE_ARGS += --with-quotas
237 else
238 CONFIGURE_ARGS += --without-quotas
239 endif
240 ifeq ($(CONFIG_SAMBA4_SERVER_AVAHI),y)
241 CONFIGURE_ARGS += --enable-avahi
242 else
243 CONFIGURE_ARGS += --disable-avahi
244 endif
245
246 ifeq ($(CONFIG_SAMBA4_SERVER_AD_DC),y)
247 CONFIGURE_ARGS += --without-winbind --without-ldb-lmdb --with-acl-support
248 else
249 CONFIGURE_ARGS += --without-winbind --without-ads --without-ldap --without-ldb-lmdb --without-ad-dc \
250 --without-json --without-libarchive --disable-python --nopyc --nopyo --without-dnsupdate --without-acl-support
251 endif
252
253 SAMBA4_PDB_MODULES :=pdb_smbpasswd,pdb_tdbsam,
254 SAMBA4_AUTH_MODULES :=auth_builtin,auth_sam,auth_unix,
255 SAMBA4_VFS_MODULES :=vfs_default,
256 SAMBA4_VFS_MODULES_SHARED :=auth_script,
257 # always build if kernel supports io_uring
258 ifdef CONFIG_KERNEL_IO_URING
259 SAMBA4_VFS_MODULES_SHARED :=$(SAMBA4_VFS_MODULES_SHARED)vfs_io_uring,
260 endif
261 ifeq ($(CONFIG_SAMBA4_SERVER_VFS),y)
262 SAMBA4_VFS_MODULES_SHARED :=$(SAMBA4_VFS_MODULES_SHARED)vfs_fruit,vfs_shadow_copy2,vfs_recycle,vfs_fake_perms,vfs_readonly,vfs_cap,vfs_offline,vfs_crossrename,vfs_catia,vfs_streams_xattr,vfs_xattr_tdb,vfs_default_quota,
263 ifdef CONFIG_PACKAGE_kmod-fs-btrfs
264 SAMBA4_VFS_MODULES_SHARED :=$(SAMBA4_VFS_MODULES_SHARED)vfs_btrfs,
265 endif
266 endif
267 ifeq ($(CONFIG_SAMBA4_SERVER_VFSX),y)
268 SAMBA4_VFS_MODULES_SHARED :=$(SAMBA4_VFS_MODULES_SHARED)vfs_virusfilter,vfs_shell_snap,vfs_commit,vfs_worm,vfs_netatalk,vfs_dirsort,vfs_fileid,
269 ifdef CONFIG_PACKAGE_kmod-fs-xfs
270 SAMBA4_VFS_MODULES_SHARED :=$(SAMBA4_VFS_MODULES_SHARED)vfs_linux_xfs_sgid,
271 endif
272 endif
273 ifeq ($(CONFIG_SAMBA4_SERVER_AD_DC),y)
274 SAMBA4_PDB_MODULES :=$(SAMBA4_PDB_MODULES)pdb_samba_dsdb,pdb_ldapsam,
275 SAMBA4_AUTH_MODULES :=$(SAMBA4_AUTH_MODULES)auth_samba4,
276 SAMBA4_VFS_MODULES :=$(SAMBA4_VFS_MODULES)vfs_posixacl,
277 SAMBA4_VFS_MODULES_SHARED :=$(SAMBA4_VFS_MODULES_SHARED)vfs_audit,vfs_extd_audit,vfs_full_audit,vfs_acl_xattr,vfs_acl_tdb,
278 # vfs_zfsacl needs https://github.com/zfsonlinux/zfs/tree/master/include/sys/zfs_acl.h
279 # vfs_nfs4acl_xattr needs https://github.com/notriddle/libdrpc/blob/master/rpc/xdr.h
280 endif
281
282 SAMBA4_MODULES :=${SAMBA4_VFS_MODULES}${SAMBA4_AUTH_MODULES}${SAMBA4_PDB_MODULES}
283 SAMBA4_MODULES_SHARDED :=${SAMBA4_VFS_MODULES_SHARED}
284
285 CONFIGURE_ARGS += \
286 --with-static-modules=$(SAMBA4_MODULES)!DEFAULT,!FORCED \
287 --with-shared-modules=$(SAMBA4_MODULES_SHARDED)!DEFAULT,!FORCED
288
289 HOST_CONFIGURE_ARGS += \
290 --with-static-modules=!DEFAULT,!FORCED \
291 --with-shared-modules=!DEFAULT,!FORCED
292
293 # lib bundling
294 PY_VER:=$(PYTHON3_VERSION_MAJOR)$(PYTHON3_VERSION_MINOR)
295 # NOTE: bundle + make private, we want to avoid version configuration (build, link) conflicts
296 HOST_CONFIGURE_ARGS += --builtin-libraries=replace --nonshared-binary=asn1_compile,compile_et
297 SYSTEM_PRIVATE_BUNDLED_LIBS:=talloc,tevent,tevent-util,texpect,tdb,ldb,tdr,cmocka,replace,com_err
298 SYSTEM_BUNDLED_LIBS:=
299 PYTHON_BUNDLED_LIBS:=pytalloc-util.cpython-$(PY_VER),pyldb-util.cpython-$(PY_VER)
300 # CONFIGURE_ARGS += --builtin-libraries=talloc,tevent,tevent-util,texpect,tdb,ldb,tdr,cmocka,com_err
301 ifdef CONFIG_KERNEL_IO_URING
302 SYSTEM_BUNDLED_LIBS:=,uring
303 endif
304 ifeq ($(CONFIG_SAMBA4_SERVER_AD_DC),y)
305 CONFIGURE_ARGS += --bundled-libraries=NONE,$(SYSTEM_PRIVATE_BUNDLED_LIBS)$(SYSTEM_BUNDLED_LIBS),$(PYTHON_BUNDLED_LIBS)
306 else
307 CONFIGURE_ARGS += --bundled-libraries=NONE,$(SYSTEM_PRIVATE_BUNDLED_LIBS)$(SYSTEM_BUNDLED_LIBS)
308 endif
309 CONFIGURE_ARGS += --private-libraries=$(SYSTEM_PRIVATE_BUNDLED_LIBS)
310
311 export COMPILE_ET=$(STAGING_DIR_HOSTPKG)/bin/compile_et_samba
312 export ASN1_COMPILE=$(STAGING_DIR_HOSTPKG)/bin/asn1_compile_samba
313
314 # make sure we use the hostpkg build toolset and we need to find host 'yapp'
315 HOST_CONFIGURE_VARS+= \
316 PATH="$(STAGING_DIR_HOSTPKG)/bin:$(STAGING_DIR_HOSTPKG)/usr/bin:$(PATH)"
317 CONFIGURE_VARS += \
318 PATH="$(STAGING_DIR_HOSTPKG)/bin:$(STAGING_DIR_HOSTPKG)/usr/bin:$(PATH)"
319
320 # we need hostpkg bin and target config
321 ifeq ($(CONFIG_SAMBA4_SERVER_AD_DC),y)
322 CONFIGURE_VARS += \
323 PYTHON_CONFIG="$(STAGING_DIR)/host/bin/$(PYTHON3)-config"
324 endif
325
326 # we dont need GnuTLS for the host helpers
327 define Host/Prepare
328 $(call Host/Prepare/Default)
329 $(SED) 's,mandatory=True,mandatory=False,g' $(HOST_BUILD_DIR)/wscript_configure_system_gnutls
330 $(SED) 's,gnutls_version =.*,gnutls_version = gnutls_min_required_version,g' $(HOST_BUILD_DIR)/wscript_configure_system_gnutls
331 endef
332 define Host/Compile
333 (cd $(HOST_BUILD_DIR); \
334 ./buildtools/bin/waf build \
335 --targets=asn1_compile,compile_et \
336 )
337 endef
338
339 define Host/Install
340 $(INSTALL_DIR) $(STAGING_DIR_HOSTPKG)/bin/
341 # add host tools suffix, prevent conflicts with krb5
342 $(INSTALL_BIN) $(HOST_BUILD_DIR)/bin/asn1_compile $(STAGING_DIR_HOSTPKG)/bin/asn1_compile_samba
343 $(INSTALL_BIN) $(HOST_BUILD_DIR)/bin/compile_et $(STAGING_DIR_HOSTPKG)/bin/compile_et_samba
344 endef
345
346 define Build/Prepare
347 $(Build/Prepare/Default)
348 ifeq ($(CONFIG_SAMBA4_SERVER_AD_DC),)
349 # un-bundle dnspython
350 $(SED) '/"dns.resolver":/d' $(PKG_BUILD_DIR)/third_party/wscript
351 # unbundle iso8601
352 $(SED) '/"iso8601":/d' $(PKG_BUILD_DIR)/third_party/wscript
353 endif
354 endef
355
356 define Build/Configure
357 $(CP) ./waf-cross-answers/$(ARCH).txt $(PKG_BUILD_DIR)/cross-answers.txt
358 echo 'Checking uname sysname type: "$(VERSION_DIST)"' >> $(PKG_BUILD_DIR)/cross-answers.txt
359 echo 'Checking uname machine type: "$(ARCH)"' >> $(PKG_BUILD_DIR)/cross-answers.txt
360 echo 'Checking uname release type: "$(LINUX_VERSION)"' >> $(PKG_BUILD_DIR)/cross-answers.txt
361 echo 'Checking uname version type: "$(VERSION_DIST) Linux-$(LINUX_VERSION) $(shell date +%Y-%m-%d)"' >> $(PKG_BUILD_DIR)/cross-answers.txt
362 # NOTE: special answers for freeBSD/CircleCI
363 echo 'checking for clnt_create(): OK' >> $(PKG_BUILD_DIR)/cross-answers.txt
364 $(call Build/Configure/Default)
365 endef
366
367 # Build via "waf install", avoid the make wrapper. (Samba logic is 'waf install' = build + install)
368 define Build/Compile
369 (cd $(PKG_BUILD_DIR); \
370 ./buildtools/bin/waf install \
371 --jobs=$(shell nproc) \
372 --destdir="$(PKG_INSTALL_DIR)" \
373 )
374 endef
375
376 # No default install see above
377 define Build/Install
378 endef
379
380 define Package/samba4-libs/install
381 $(INSTALL_DIR) $(1)/usr/lib
382 $(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so* $(1)/usr/lib/
383 # rpath-install
384 $(CP) $(PKG_INSTALL_DIR)/usr/lib/samba $(1)/usr/lib/
385 endef
386
387 define Package/samba4-client/install
388 $(INSTALL_DIR) $(1)/usr/bin
389 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/{cifsdd,smbclient,smbget} $(1)/usr/bin/
390 endef
391
392 define Package/samba4-admin/install
393 $(INSTALL_DIR) $(1)/usr/bin
394 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/{net,smbcontrol,profiles,rpcclient,dbwrap_tool} $(1)/usr/bin/
395 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/{ldbadd,ldbdel,ldbedit,ldbmodify,ldbrename,ldbsearch} $(1)/usr/bin/
396 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/{tdbbackup,tdbdump,tdbrestore,tdbtool} $(1)/usr/bin/
397 $(INSTALL_DIR) $(1)/usr/sbin
398 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/eventlogadm $(1)/usr/sbin/
399 endef
400
401 define Package/samba4-utils/install
402 $(INSTALL_DIR) $(1)/usr/bin
403 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/{smbstatus,smbtree,mvxattr,smbtar} $(1)/usr/bin/
404 ifeq ($(CONFIG_SAMBA4_SERVER_VFS),y)
405 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/smbcquotas $(1)/usr/bin/
406 endif
407 endef
408
409 define Package/samba4-server/install
410 $(INSTALL_DIR) $(1)/usr/bin
411 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/{smbpasswd,pdbedit,testparm} $(1)/usr/bin/
412 $(INSTALL_DIR) $(1)/usr/sbin
413 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/smbd $(1)/usr/sbin/
414 ifeq ($(CONFIG_SAMBA4_SERVER_NETBIOS),y)
415 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/nmbd $(1)/usr/sbin/
416 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/nmblookup $(1)/usr/bin/
417 endif
418 ifeq ($(CONFIG_SAMBA4_SERVER_AD_DC),y)
419 $(INSTALL_DIR) $(1)/usr/lib
420 $(CP) $(PKG_INSTALL_DIR)/usr/lib/$(PYTHON3) $(1)/usr/lib/
421 $(INSTALL_DIR) $(1)/usr/share/
422 $(CP) $(PKG_INSTALL_DIR)/usr/share/samba $(1)/usr/share/
423 # fix wrong hardcoded python3 location
424 $(SED) '1s,^#!/.*python3.*,#!/usr/bin/python3,' $(PKG_INSTALL_DIR)/usr/bin/samba-tool
425 $(SED) '1s,^#!/.*python3.*,#!/usr/bin/python3,' $(PKG_INSTALL_DIR)/usr/sbin/{samba-gpupdate,samba_dnsupdate,samba_kcc,samba_spnupdate,samba_upgradedns,samba_downgrade_db}
426 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/{samba-tool,ntlm_auth,oLschema2ldif} $(1)/usr/bin/
427 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/{sharesec,smbcacls} $(1)/usr/bin/
428 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/{samba,samba-gpupdate,samba_dnsupdate,samba_kcc,samba_spnupdate,samba_upgradedns,samba_downgrade_db} $(1)/usr/sbin/
429 endif
430 $(INSTALL_DIR) $(1)/etc/config $(1)/etc/samba $(1)/etc/init.d
431 $(INSTALL_CONF) ./files/samba.config $(1)/etc/config/samba4
432 $(INSTALL_DATA) ./files/smb.conf.template $(1)/etc/samba
433 $(INSTALL_BIN) ./files/samba.init $(1)/etc/init.d/samba4
434 endef
435
436 define Package/samba4-server/conffiles
437 /etc/config/samba4
438 /etc/samba/smb.conf.template
439 /etc/samba/smb.conf
440 /etc/samba/smbpasswd
441 /etc/samba/secrets.tdb
442 /etc/samba/passdb.tdb
443 /etc/samba/lmhosts
444 /etc/nsswitch.conf
445 /etc/krb5.conf
446 endef
447
448 $(eval $(call HostBuild))
449 $(eval $(call BuildPackage,samba4-libs))
450 $(eval $(call BuildPackage,samba4-server))
451 $(eval $(call BuildPackage,samba4-client))
452 $(eval $(call BuildPackage,samba4-admin))
453 $(eval $(call BuildPackage,samba4-utils))