1
0
mirror of https://github.com/home-assistant/operating-system.git synced 2026-05-18 06:28:58 +01:00
Files
operating-system/buildroot/package/rsync/rsync.mk
T
2018-03-17 23:47:00 +00:00

23 lines
542 B
Makefile

################################################################################
#
# rsync
#
################################################################################
RSYNC_VERSION = 3.1.3
RSYNC_SITE = http://rsync.samba.org/ftp/rsync/src
RSYNC_LICENSE = GPL-3.0+
RSYNC_LICENSE_FILES = COPYING
RSYNC_DEPENDENCIES = zlib popt
RSYNC_CONF_OPTS = \
--with-included-zlib=no \
--with-included-popt=no
ifeq ($(BR2_PACKAGE_ACL),y)
RSYNC_DEPENDENCIES += acl
else
RSYNC_CONF_OPTS += --disable-acl-support
endif
$(eval $(autotools-package))