From 83f6c228c2c364f7b9d8e7c470a06f1fb6c962c6 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Fri, 27 Feb 2026 16:54:52 +0200 Subject: [PATCH] Update package version to 5.4.0 --- pkg.info | 15 +++++++++++++-- source.sh | 10 ---------- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/pkg.info b/pkg.info index a2157c7..46ca502 100644 --- a/pkg.info +++ b/pkg.info @@ -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: + - enumdev@enumerated.dev 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 diff --git a/source.sh b/source.sh index b159832..736b6af 100644 --- a/source.sh +++ b/source.sh @@ -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() {