2016-01-21 02:04:02 +01:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://github.com/librsync/librsync
|
|
|
|
TERMUX_PKG_DESCRIPTION="Remote delta-compression library"
|
2019-01-21 13:53:58 +01:00
|
|
|
TERMUX_PKG_LICENSE="LGPL-2.0"
|
2019-08-23 10:07:41 +02:00
|
|
|
TERMUX_PKG_VERSION=2.1.0
|
|
|
|
TERMUX_PKG_SHA256=f701d2bab3d7471dfea60d29e9251f8bb7567222957f7195af55142cb207c653
|
2016-01-21 02:04:02 +01:00
|
|
|
TERMUX_PKG_SRCURL=https://github.com/librsync/librsync/archive/v${TERMUX_PKG_VERSION}.tar.gz
|
2017-09-06 23:53:31 +02:00
|
|
|
TERMUX_PKG_DEPENDS="libbz2"
|
2019-07-20 10:42:33 +02:00
|
|
|
TERMUX_PKG_BREAKS="librsync-dev"
|
|
|
|
TERMUX_PKG_REPLACES="librsync-dev"
|
2017-09-06 23:53:31 +02:00
|
|
|
TERMUX_PKG_BUILD_DEPENDS="libpopt"
|
2019-02-12 09:41:30 +01:00
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="-DPERL_EXECUTABLE=$(which perl)"
|
2016-01-21 02:04:02 +01:00
|
|
|
|
2019-02-08 10:37:29 +01:00
|
|
|
termux_step_pre_configure() {
|
2019-08-08 14:25:54 +02:00
|
|
|
# Certain packages are not safe to build on device because their
|
|
|
|
# build.sh script deletes specific files in $TERMUX_PREFIX.
|
2019-08-12 17:28:41 +02:00
|
|
|
if $TERMUX_ON_DEVICE_BUILD; then
|
2019-08-08 14:25:54 +02:00
|
|
|
termux_error_exit "Package '$TERMUX_PKG_NAME' is not safe for on-device builds."
|
|
|
|
fi
|
|
|
|
|
2016-01-21 02:04:02 +01:00
|
|
|
# Remove old files to ensure new timestamps on symlinks:
|
|
|
|
rm -Rf $TERMUX_PREFIX/lib/librsync.*
|
2017-01-15 13:48:05 +01:00
|
|
|
}
|
2016-01-21 02:04:02 +01:00
|
|
|
|
2019-02-08 10:37:29 +01:00
|
|
|
termux_step_post_configure() {
|
2016-01-21 02:04:02 +01:00
|
|
|
mkdir -p $TERMUX_PREFIX/share/man/man{1,3}
|
|
|
|
cp $TERMUX_PKG_SRCDIR/doc/rdiff.1 $TERMUX_PREFIX/share/man/man1
|
|
|
|
cp $TERMUX_PKG_SRCDIR/doc/librsync.3 $TERMUX_PREFIX/share/man/man3
|
|
|
|
}
|