Update package version to 8.15.0

This commit is contained in:
2025-09-09 20:41:47 +03:00
parent 9200162810
commit 85801e5757
3 changed files with 37 additions and 10 deletions
+19 -7
View File
@@ -2,7 +2,7 @@
# 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://curl.se/download/curl-${BPM_PKG_VERSION}.tar.xz"
DOWNLOAD="https://github.com/curl/curl/archive/refs/tags/curl-${BPM_PKG_VERSION//./_}.tar.gz"
FILENAME="${DOWNLOAD##*/}"
# The prepare function is executed in the root of the temp directory
@@ -10,15 +10,22 @@ FILENAME="${DOWNLOAD##*/}"
prepare() {
wget "$DOWNLOAD"
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
cd "$BPM_SOURCE"
autoreconf -fi
}
# The build function is executed in the source directory
# This function is used to compile the source code
build() {
./configure --prefix=/usr \
--disable-static \
--with-openssl \
--enable-threaded-resolver \
./configure --prefix=/usr \
--disable-static \
--with-openssl \
--with-gssapi \
--with-libssh2 \
--enable-ipv6 \
--enable-websockets \
--enable-threaded-resolver \
--with-ca-path=/etc/ssl/certs
make
}
@@ -33,13 +40,18 @@ check() {
# This function is used to move the compiled files into the output directory
package() {
make DESTDIR="$BPM_OUTPUT" install
# Remove unwanted files from 'docs' directory
rm -rf docs/examples/.deps
find docs \( -name Makefile\* -o \
-name \*.1 -o \
-name \*.3 -o \
-name CMakeLists.txt \) -delete
# Install documentation
mkdir -p "$BPM_OUTPUT"/usr/share/doc/curl
cp -v -R docs -T "$BPM_OUTPUT"/usr/share/doc/curl
mkdir -p "$BPM_OUTPUT"/usr/share/licenses/curl
cp COPYING "$BPM_OUTPUT"/usr/share/licenses/curl/curl.txt
# Install package license
install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/curl/COPYING
}