kumquat-buildroot/package/rsync/rsync.mk

24 lines
689 B
Makefile
Raw Normal View History

2004-10-09 22:07:08 +02:00
#############################################################
#
# rsync
#
#############################################################
2009-04-07 09:16:37 +02:00
RSYNC_VERSION:=3.0.5
RSYNC_SOURCE:=rsync-$(RSYNC_VERSION).tar.gz
2008-03-10 17:17:26 +01:00
RSYNC_SITE:=http://rsync.samba.org/ftp/rsync/src
RSYNC_AUTORECONF:=no
RSYNC_USE_CONFIG_CACHE:=no
RSYNC_INSTALL_STAGING:=NO
RSYNC_INSTALL_TARGET:=YES
ifeq ($(BR2_ENABLE_DEBUG),y)
RSYNC_INSTALL_TARGET_OPT:=DESTDIR=$(TARGET_DIR) INSTALLCMD='./install-sh -c' \
install
else
RSYNC_INSTALL_TARGET_OPT:=DESTDIR=$(TARGET_DIR) INSTALLCMD='./install-sh -c' \
STRIPPROG="$(TARGET_STRIP)" install-strip
endif
RSYNC_CONF_OPT:=--with-included-popt
2004-10-09 22:07:08 +02:00
$(eval $(call AUTOTARGETS,package,rsync))