f436cb54ab
librsync implements the rolling-checksum algorithm of remote file synchronization that was popularized by the rsync utility. This algorithm transfers the differences between 2 files without needing both files on the same system. librsync is for building other programs that transfer files as efficiently as rsync. You can use librsync in a program you write to do backups, distribute binary patches to programs, or sync directories to a server or between peers.
12 lines
313 B
Makefile
12 lines
313 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1 2015/09/12 22:54:01 joerg Exp $
|
|
|
|
BUILDLINK_TREE+= librsync
|
|
|
|
.if !defined(LIBRSYNC_BUILDLINK3_MK)
|
|
LIBRSYNC_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_API_DEPENDS.librsync+= librsync>=1.0.1
|
|
BUILDLINK_PKGSRCDIR.librsync?= ../../net/librsync
|
|
.endif # LIBRSYNC_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -librsync
|