summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
+}
+