diff options
author | davidovski <david@davidovski.xyz> | 2022-01-09 02:49:15 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-09 02:49:15 +0000 |
commit | 1d64b325a53bb82fae773fb37aad8cb285f1e552 (patch) | |
tree | 15a14294eba0292ce40d77acafb5f59d6741c833 /repo/core | |
parent | ef16e7eab3740a533eee4c37c739961fcaeac558 (diff) |
added rsync
Diffstat (limited to 'repo/core')
-rw-r--r-- | repo/core/rsync.xibuild | 15 |
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 +} + |