diff --git a/pkg.info b/pkg.info index f5260e3..bfca368 100644 --- a/pkg.info +++ b/pkg.info @@ -1,9 +1,24 @@ name: wireplumber description: WirePlumber is a modular session/policy manager for PipeWire -version: 0.5.11 +version: 0.5.12 +revision: 1 url: https://pipewire.pages.freedesktop.org/wireplumber/ license: MIT architecture: any -depends: ["gcc-libs", "glibc", "glib", "lua", "pipewire"] -make_depends: ["gobject-introspection", "meson", "python-setuptools"] type: source +depends: + - gcc-libs + - glibc + - glib + - lua + - pipewire +make_depends: + - doxygen + - gobject-introspection + - meson + - python-setuptools +downloads: + - url: https://gitlab.freedesktop.org/pipewire/wireplumber/-/archive/${BPM_PKG_VERSION}/wireplumber-${BPM_PKG_VERSION}.tar.gz + extract_to: ${BPM_SOURCE} + extract_strip_components: 1 + checksum: 0ce5cd48087bc5b559d7e1a947e9e0adb2a9b6f1dabd984af801f30fbba5e19c diff --git a/source.sh b/source.sh index 66aab20..12d0c98 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://gitlab.freedesktop.org/pipewire/wireplumber/-/archive/${BPM_PKG_VERSION}/wireplumber-${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() {