From b42ea651b4a2c4f5617701f8ebbd8a2831cd1f66 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Fri, 10 Oct 2025 16:50:09 +0300 Subject: [PATCH] Update package version to 1.33.3 --- pkg.info | 18 ++++++++++++++---- source.sh | 10 ---------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/pkg.info b/pkg.info index b9a040f..8b9ea11 100644 --- a/pkg.info +++ b/pkg.info @@ -1,10 +1,20 @@ name: mpg123 description: Fast console MPEG Audio Player and decoder library -version: 1.33.2 +version: 1.33.3 +revision: 1 url: https://mpg123.de/ license: LGPL2.1-only architecture: any -depends: ["alsa-lib","jack","libpulse"] -optional_dependds: ["perl","sdl2-compat"] -make_depends: ["sdl2-compat"] type: source +depends: + - alsa-lib + - jack + - libpulse +make_depends: + - bzip2 + - sdl2-compat +downloads: + - url: https://downloads.sourceforge.net/project/mpg123/mpg123/${BPM_PKG_VERSION}/mpg123-${BPM_PKG_VERSION}.tar.bz2 + extract_to: ${BPM_SOURCE} + extract_strip_components: 1 + checksum: 6a0c6472dd156e213c2068f40115ebbb73978c2d873e66bae2a250e2d2198d26 diff --git a/source.sh b/source.sh index 0716641..aa72fcb 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://downloads.sourceforge.net/mpg123/mpg123-${BPM_PKG_VERSION}.tar.bz2" -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() {