Difference between revisions of "Librsync"
From CBLFS
Jump to navigationJump to searchWeibullguy (talk | contribs) (Added page) |
|||
Line 13: | Line 13: | ||
Compile the package: | Compile the package: | ||
− | ./configure --prefix=/usr | + | ./configure --prefix=/usr && |
make | make | ||
Revision as of 22:10, 16 January 2008
Download Source: | http://downloads.sourceforge.net/librsync/librsync-0.9.7.tar.gz |
---|
Contents
Introduction to Librsync
librsync implements the rolling-checksum algorithm of remote file synchronization that was popularized by the rsync utility and is used in rproxy. This algorithm transfers the differences between 2 files without needing both files on the same system.
Project Homepage: http://librsync.sourceforge.net/
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package:
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr && make
Install the package:
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/usr \ --libdir=/usr/lib32 && make
Install the package:
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" ./configure --prefix=/usr \ --libdir=/usr/lib64 && make
Install the package:
make install
Contents
Installed Directories: | None |
---|---|
Installed Programs: | None |
Installed Libraries: | librsync.{a,la,so} |
Short Descriptions
librsync | is a library implementing the rolling-checksum algorithm. |
---|