diff options
Diffstat (limited to 'repo/core/rsync.xibuild')
-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 +} + |