From ebda6bbe5ea7878f0c5e87b304b4a2e9c8285889 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Fri, 19 Dec 2025 15:09:45 +0200 Subject: [PATCH] Update package version to 4.25 --- pkg.info | 33 +++++++++++++++++++++++++++++---- source.sh | 10 ---------- 2 files changed, 29 insertions(+), 14 deletions(-) diff --git a/pkg.info b/pkg.info index 5989e9c..a85ef67 100644 --- a/pkg.info +++ b/pkg.info @@ -1,10 +1,35 @@ name: i3 description: Improved tiling window manager -version: 4.24 +version: "4.25" +revision: 1 url: https://i3wm.org/ license: BSD architecture: any -depends: ["libev","libxkbcommon","pango","ttf-font","startup-notification","xcb-util-cursor","xcb-util-image","xcb-util-keysyms","xcb-util-wm","xcb-util-xrm","yajl"] -optional_depends: ["dmenu","i3-lock","i3-status","rofi","xss-lock"] -make_depends: ["asciidoc","meson","xmlto"] type: source +depends: + - libev + - libxkbcommon + - pango + - ttf-font + - startup-notification + - xcb-util-cursor + - xcb-util-image + - xcb-util-keysyms + - xcb-util-wm + - xcb-util-xrm + - yajl +optional_depends: + - dmenu + - i3-lock + - i3-status + - rofi + - xss-lock +make_depends: + - asciidoc + - meson + - xmlto +downloads: + - url: https://i3wm.org/downloads/i3-${BPM_PKG_VERSION}.tar.xz + extract_to: ${BPM_SOURCE} + extract_strip_components: 1 + checksum: 7eebdef9b14a4f56242764d102c5a30507a97967f1507457e44ec4b775762e42 diff --git a/source.sh b/source.sh index 83b9215..935ad35 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://i3wm.org/downloads/i3-${BPM_PKG_VERSION}.tar.xz" -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() {