From a8f5c7c690534be27d27734ac7a07ce240d28695 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Fri, 12 Dec 2025 18:40:18 +0200 Subject: [PATCH] Update package version to 1.2.15 --- pkg.info | 27 +++++++++++++++++++++++---- source.sh | 11 +---------- 2 files changed, 24 insertions(+), 14 deletions(-) diff --git a/pkg.info b/pkg.info index 9d53ac0..6b57c7c 100644 --- a/pkg.info +++ b/pkg.info @@ -1,10 +1,29 @@ name: alsa-utils description: Utilities for the Advanced Linux Sound Architecture -version: 1.2.14 +version: 1.2.15 +revision: 1 url: https://www.alsa-project.org/ license: GPL2-or-later architecture: any -depends: ["alsa-lib", "gcc-libs", "glibc", "libsamplerate", "ncurses", "pciutils", "psmisc"] -optional_depends: ["bash", "fftw"] -make_depends: ["docbook-xsl-nons", "fftw", "xmlto"] type: source +depends: + - alsa-lib + - gcc-libs + - glibc + - libsamplerate + - ncurses + - pciutils + - psmisc +optional_depends: + - bash + - fftw +make_depends: + - bzip2 + - docbook-xsl-nons + - fftw + - xmlto +downloads: + - url: https://www.alsa-project.org/files/pub/utils/alsa-utils-${BPM_PKG_VERSION}.tar.bz2 + extract_to: ${BPM_SOURCE} + extract_strip_components: 1 + checksum: d3183d2ed2d69e9143c5beb97036267c3fdabfe8bfbea8bc6863f17b1f0b568e diff --git a/source.sh b/source.sh index d2e62a7..b5149a5 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://www.alsa-project.org/files/pub/utils/alsa-utils-${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() { @@ -30,5 +20,6 @@ check() { package() { make DESTDIR="$BPM_OUTPUT" install + # Install package license install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/alsa-utils/COPYING }