From 84c6d5a9e49e5b8a6ecaec2c81c4b2fb101e69a6 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sat, 3 Jan 2026 14:17:43 +0200 Subject: [PATCH] Update package version to 0.6.1 --- pkg.info | 4 ++-- source.sh | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/pkg.info b/pkg.info index d3a19b5..49256f9 100644 --- a/pkg.info +++ b/pkg.info @@ -1,6 +1,6 @@ name: bpm description: The official package manager for Tide Linux -version: 0.6.0 +version: 0.6.1 revision: 1 url: https://github.com/EnumeratedDev/bpm license: MIT @@ -23,4 +23,4 @@ downloads: - url: https://github.com/EnumeratedDev/bpm/archive/refs/tags/${BPM_PKG_VERSION}.tar.gz extract_to: ${BPM_SOURCE} extract_strip_components: 1 - checksum: e66f70cb9f4a34ec9aba9092f0b0de006765b71aef0cb30922a5146042d6c7af + checksum: d0bdbeb029e7df27e74b84ba584314b35462b735881c27c60c403b0d6a160710 diff --git a/source.sh b/source.sh index 14fe198..d1ed79b 100644 --- a/source.sh +++ b/source.sh @@ -5,16 +5,17 @@ # The build function is executed in the source directory # This function is used to compile the source code build() { - make + export GOFLAGS="-modcacherw" + make VERSION="$BPM_PKG_VERSION" } # The package function is executed in the source directory # This function is used to move the compiled files into the output directory package() { - make install DESTDIR="$BPM_OUTPUT" PREFIX=/usr SYSCONFDIR=/etc + make DESTDIR="$BPM_OUTPUT" PREFIX=/usr SYSCONFDIR=/etc install # Install configuration files - make install-config DESTDIR="$BPM_OUTPUT" PREFIX=/usr SYSCONFDIR=/etc + make DESTDIR="$BPM_OUTPUT" PREFIX=/usr SYSCONFDIR=/etc install-config # Install package license install -Dm644 "$BPM_SOURCE"/LICENSE "$BPM_OUTPUT"/usr/share/licenses/bpm/LICENSE