From d3cc1b71f8745cf612f815ac0e1f2edac1a4d24d Mon Sep 17 00:00:00 2001 From: EnumDev Date: Thu, 16 Oct 2025 12:35:55 +0300 Subject: [PATCH] Update package version to 1.3.0 --- pkg.info | 11 +++++++++-- source.sh | 10 ---------- 2 files changed, 9 insertions(+), 12 deletions(-) diff --git a/pkg.info b/pkg.info index 28e4bbe..7f55a0a 100644 --- a/pkg.info +++ b/pkg.info @@ -1,8 +1,15 @@ name: exfatprogs description: exFAT filesystem userspace utilities -version: 1.2.9 +version: 1.3.0 +revision: 1 url: https://github.com/exfatprogs/exfatprogs license: GPL2-or-later architecture: any -depends: ["glibc"] type: source +depends: + - glibc +downloads: + - url: https://github.com/exfatprogs/exfatprogs/releases/download/${BPM_PKG_VERSION}/exfatprogs-${BPM_PKG_VERSION}.tar.gz + extract_to: ${BPM_SOURCE} + extract_strip_components: 1 + checksum: 455e7e651cd0e7ef06d7a0f0dda4f50e21697ec6c4f77f6a152a90c3862f81b3 diff --git a/source.sh b/source.sh index c6003dc..a705a14 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://github.com/exfatprogs/exfatprogs/releases/download/${BPM_PKG_VERSION}/exfatprogs-${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() {