summaryrefslogtreecommitdiff
path: root/repo/core/rsync.xibuild
blob: 0aa0313ef710e8d41c35f892dfe556f8f4a0f9c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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 DESTDIR=$PKG_DEST install
}