mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-14 07:40:07 +02:00
* marble Don't start SUMMARY with app name Re-ordered blocks * ne Don't start SUMMARY with app name Still in old BEP format * pixman Don't start SUMMARY with app name Improved DESCRIPTION Re-ordered blocks * qemacs Don't start SUMMARY with app name Re-ordered blocks * rsync Don't start SUMMARY with app name Re-ordered blocks * schroedinger Don't start SUMMARY with app name Re-ordered blocks * screen Don't start SUMMARY with app name Re-ordered blocks * sharutils Don't start SUMMARY with app name Re-ordered blocks * sortsave Don't start SUMMARY with app name Re-ordered blocks Corrected PROVIDES to declare an addon * srm Don't start SUMMARY with app name Re-ordered blocks
64 lines
1.2 KiB
Bash
64 lines
1.2 KiB
Bash
SUMMARY="A utility for fast incremental file transfer"
|
|
DESCRIPTION="rsync is a file transfer program for Unix systems. rsync uses the \
|
|
'rsync algorithm' which provides a very fast method for bringing remote files \
|
|
into sync. It does this by sending just the differences in the files across \
|
|
the link, without requiring that both sets of files are present at one of the \
|
|
ends of the link beforehand."
|
|
HOMEPAGE="http://rsync.samba.org/"
|
|
COPYRIGHT="1996-2013 by Andrew Tridgell, Wayne Davison, and others"
|
|
LICENSE="GNU GPL v3"
|
|
REVISION="2"
|
|
SOURCE_URI="http://rsync.samba.org/ftp/rsync/src/rsync-3.1.0.tar.gz"
|
|
CHECKSUM_SHA256="81ca23f77fc9b957eb9845a6024f41af0ff0c619b7f38576887c63fa38e2394e"
|
|
PATCHES="rsync-3.1.0.patch"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86"
|
|
|
|
PROVIDES="
|
|
rsync = $portVersion compat >= 3
|
|
cmd:rsync = $portVersion compat >= 3
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libz
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libz
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:find
|
|
cmd:gcc
|
|
cmd:ld
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
aclocal
|
|
autoconf
|
|
runConfigure ./configure \
|
|
--enable-xattr-support \
|
|
--disable-iconv \
|
|
--disable-iconv-open \
|
|
--disable-locale \
|
|
--disable-debug \
|
|
--with-included-zlib=no
|
|
|
|
make reconfigure
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make test
|
|
}
|