2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2004-10-09 22:07:08 +02:00
|
|
|
#
|
|
|
|
# rsync
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2008-08-20 16:15:10 +02:00
|
|
|
|
2014-07-09 21:03:42 +02:00
|
|
|
RSYNC_VERSION = 3.1.1
|
2011-09-27 12:17:43 +02:00
|
|
|
RSYNC_SITE = http://rsync.samba.org/ftp/rsync/src
|
2012-08-19 22:18:29 +02:00
|
|
|
RSYNC_LICENSE = GPLv3+
|
|
|
|
RSYNC_LICENSE_FILES = COPYING
|
2013-10-16 15:13:37 +02:00
|
|
|
RSYNC_DEPENDENCIES = zlib popt
|
2014-09-27 21:32:44 +02:00
|
|
|
RSYNC_CONF_OPTS = \
|
2013-10-16 15:13:37 +02:00
|
|
|
--with-included-zlib=no \
|
|
|
|
--with-included-popt=no
|
2004-10-09 22:07:08 +02:00
|
|
|
|
2014-03-31 19:28:10 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_ACL),y)
|
|
|
|
RSYNC_DEPENDENCIES += acl
|
|
|
|
else
|
2014-09-27 21:32:44 +02:00
|
|
|
RSYNC_CONF_OPTS += --disable-acl-support
|
2014-03-31 19:28:10 +02:00
|
|
|
endif
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|