summaryrefslogtreecommitdiff
path: root/repo/tip/rsync.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/tip/rsync.xibuild')
-rw-r--r--repo/tip/rsync.xibuild14
1 files changed, 14 insertions, 0 deletions
diff --git a/repo/tip/rsync.xibuild b/repo/tip/rsync.xibuild
new file mode 100644
index 0000000..809171a
--- /dev/null
+++ b/repo/tip/rsync.xibuild
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+DEPS=(sh)
+
+SOURCE=https://www.samba.org/ftp/rsync/src/rsync-3.2.3.tar.gz
+DESC="A utility that provides fast incremental file transfer"
+
+
+build () {
+ ./configure --prefix=/usr --disable-md2man
+ make
+ make DESTDIR=$PKG_DEST install
+}
+