Update package version to 1.3.2

This commit is contained in:
2026-02-20 19:53:05 +02:00
parent cc85622cc3
commit f58e6612ef
3 changed files with 26 additions and 12 deletions
+3
View File
@@ -0,0 +1,3 @@
# Ignore BPM archives and signatures
*.bpm
*.bpm.sig
+22 -5
View File
@@ -1,15 +1,32 @@
name: zlib name: zlib
description: A Massively Spiffy Yet Delicately Unobtrusive Compression Library description: A Massively Spiffy Yet Delicately Unobtrusive Compression Library
version: 1.3.1 version: 1.3.2
revision: 3 revision: 1
url: https://www.zlib.net/ url: https://www.zlib.net/
license: Zlib license: Zlib
maintainers:
- [email protected]
architecture: any architecture: any
depends: ["glibc"]
make_depends: ["bash","binutils","coreutils","gcc","glibc","make","sed"]
type: source type: source
depends:
- glibc
make_depends:
- bash
- binutils
- coreutils
- gcc
- glibc
- make
- sed
downloads:
- url: https://github.com/madler/zlib/archive/refs/tags/v${BPM_PKG_VERSION}.tar.gz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: b99a0b86c0ba9360ec7e78c4f1e43b1cbdf1e6936c8fa0f6835c0cd694a495a1
split_packages: split_packages:
- name: zlib - name: zlib
- name: minizip - name: minizip
description: zip and unzip routines based on zlib description: zip and unzip routines based on zlib
depends: ["glibc","zlib"] depends:
- glibc
- zlib
+1 -7
View File
@@ -2,15 +2,9 @@
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE # 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 # 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/madler/zlib/archive/refs/tags/v${BPM_PKG_VERSION}.tar.gz"
FILENAME="${DOWNLOAD##*/}"
# The prepare function is executed in the root of the temp directory # 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 # This function is used for putting downloaded files to the correct location or applying patches
prepare() { prepare() {
wget "$DOWNLOAD"
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
cd "$BPM_SOURCE"/contrib/minizip cd "$BPM_SOURCE"/contrib/minizip
# Backup Makefile to run tests # Backup Makefile to run tests
cp Makefile Makefile.orig cp Makefile Makefile.orig