#!/bin/bash

DEPS=(sh)

SOURCE=https://www.samba.org/ftp/rsync/src/rsync-3.2.3.tar.gz
DESC="A utility that provides fast incremental file transfer"


build () {
    ./configure --prefix=/usr --disable-md2man
    make
    make DESTDIR=$PKG_DEST install
}