Update package version to 5.4.0

This commit is contained in:
2026-02-27 16:54:52 +02:00
parent f9ff60708c
commit 83f6c228c2
2 changed files with 13 additions and 12 deletions
+13 -2
View File
@@ -1,8 +1,19 @@
name: gawk
description: GNU awk
version: 5.3.2
version: 5.4.0
revision: 1
url: https://www.gnu.org/software/gawk/
license: GPL
maintainers:
- [email protected]
architecture: any
depends: ["glibc","mpfr","sh"]
type: source
depends:
- glibc
- mpfr
- sh
downloads:
- url: https://ftpmirror.gnu.org/gnu/gawk/gawk-${BPM_PKG_VERSION}.tar.xz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: 3dd430f0cd3b4428c6c3f6afc021b9cd3c1f8c93f7a688dc268ca428a90b4ac1
-10
View File
@@ -2,16 +2,6 @@
# 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://ftpmirror.gnu.org/gnu/gawk/gawk-${BPM_PKG_VERSION}.tar.xz"
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() {