Update package version to 3.4.2

This commit is contained in:
2026-05-02 18:24:46 +03:00
parent c3592fb034
commit 716c3a6f10
2 changed files with 25 additions and 14 deletions
+2 -12
View File
@@ -2,27 +2,17 @@
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
DOWNLOAD="https://github.com/RsyncProject/rsync/archive/refs/tags/v${BPM_PKG_VERSION}.tar.gz"
FILENAME="${DOWNLOAD##*/}"
# The prepare function is executed in the root of the temp directory
# This function is used for downloading files and putting them into the correct location
prepare() {
wget "$DOWNLOAD"
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
}
# The build function is executed in the source directory
# This function is used to compile the source code
build() {
./configure --prefix=/usr --disable-xxhash --enable-ipv6 --with-included-popt=no --with-included-zlib=no
./configure --prefix=/usr --enable-ipv6 --disable-debug --with-rrsync --with-included-popt=no --with-included-zlib=no
make
}
# The check function is executed in the source directory
# This function is used to run tests to verify the package has been compiled correctly
check() {
make check
make test
}
# The package function is executed in the source directory