xref: /OK3568_Linux_fs/buildroot/package/rsync/rsync.mk (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1################################################################################
2#
3# rsync
4#
5################################################################################
6
7RSYNC_VERSION = 3.2.3
8RSYNC_SITE = http://rsync.samba.org/ftp/rsync/src
9RSYNC_LICENSE = GPL-3.0+ with exceptions
10RSYNC_LICENSE_FILES = COPYING
11RSYNC_CPE_ID_VENDOR = samba
12RSYNC_SELINUX_MODULES = rsync
13RSYNC_DEPENDENCIES = zlib popt
14RSYNC_CONF_OPTS = \
15	--with-included-zlib=no \
16	--with-included-popt=no \
17	--disable-simd \
18	--disable-openssl \
19	--disable-xxhash \
20	--disable-zstd \
21	--disable-lz4 \
22	--disable-asm
23
24# 0001-rsync-ssl-Verify-the-hostname-in-the-certificate-when-using-openssl.patch
25RSYNC_IGNORE_CVES += CVE-2020-14387
26
27ifeq ($(BR2_PACKAGE_ACL),y)
28RSYNC_DEPENDENCIES += acl
29else
30RSYNC_CONF_OPTS += --disable-acl-support
31endif
32
33$(eval $(autotools-package))
34