From 7e2f9cb7ab7f5aa6b6133ab916ff0b49e0ad8460 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Fri, 30 Nov 2007 09:41:18 +0000 Subject: [PATCH] packages: add rsync package This patch adds a rsync package to openwrt. Signed-off-by: Jeremy Kerr SVN-Revision: 9633 --- net/rsync/Makefile | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 net/rsync/Makefile diff --git a/net/rsync/Makefile b/net/rsync/Makefile new file mode 100644 index 000000000..a1170f6f2 --- /dev/null +++ b/net/rsync/Makefile @@ -0,0 +1,41 @@ +# +# Copyright (C) 2007 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# +# $Id$ +# +include $(TOPDIR)/rules.mk + +PKG_NAME:=rsync +PKG_VERSION:=2.6.9 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://rsync.samba.org/ftp/rsync +PKG_MD5SUM:=996d8d8831dbca17910094e56dcb5942 + +include $(INCLUDE_DIR)/package.mk + +define Package/rsync + SECTION:=net + CATEGORY:=Network + TITLE:=fast incremental file transfer + URL:=http://rsync.samba.org/ +endef + +define Build/Compile + $(call Build/Compile/Default, \ + PREFIX="/usr" \ + ) +endef + +define Package/rsync/install + $(MAKE) -C $(PKG_BUILD_DIR) \ + DESTDIR="$(1)" \ + PREFIX="/usr" \ + install-strip + rm -rf $(1)/usr/man +endef + +$(eval $(call BuildPackage,rsync)) -- 2.30.2