buildrootschalter/package/rsync/rsync.mk

23 lines
542 B
Makefile
Raw Normal View History

################################################################################
2004-10-09 22:07:08 +02:00
#
# rsync
#
################################################################################
RSYNC_VERSION = 3.1.1
RSYNC_SITE = http://rsync.samba.org/ftp/rsync/src
RSYNC_LICENSE = GPLv3+
RSYNC_LICENSE_FILES = COPYING
RSYNC_DEPENDENCIES = zlib popt
RSYNC_CONF_OPTS = \
--with-included-zlib=no \
--with-included-popt=no
2004-10-09 22:07:08 +02:00
ifeq ($(BR2_PACKAGE_ACL),y)
RSYNC_DEPENDENCIES += acl
else
RSYNC_CONF_OPTS += --disable-acl-support
endif
$(eval $(autotools-package))