summaryrefslogtreecommitdiff
path: root/repo/core/rsync.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-01-09 02:49:15 +0000
committerdavidovski <david@davidovski.xyz>2022-01-09 02:49:15 +0000
commit1d64b325a53bb82fae773fb37aad8cb285f1e552 (patch)
tree15a14294eba0292ce40d77acafb5f59d6741c833 /repo/core/rsync.xibuild
parentef16e7eab3740a533eee4c37c739961fcaeac558 (diff)
added rsync
Diffstat (limited to 'repo/core/rsync.xibuild')
-rw-r--r--repo/core/rsync.xibuild15
1 files changed, 15 insertions, 0 deletions
diff --git a/repo/core/rsync.xibuild b/repo/core/rsync.xibuild
new file mode 100644
index 0000000..966dbee
--- /dev/null
+++ b/repo/core/rsync.xibuild
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+DEPS=(sh)
+
+SOURCE=https://github.com/WayneD/rsync/archive/refs/tags/v3.2.3.tar.gz
+DESC="A utility that provides fast incremental file transfer"
+
+
+build () {
+ ./configure --prefix=/usr
+ make
+ make check
+ make DESTDIR=$PKG_DEST install
+}
+