Update package version to 0.4.2

This commit is contained in:
2026-04-05 11:53:40 +03:00
parent 79113a121c
commit 691f904f21
2 changed files with 34 additions and 9 deletions
+25 -9
View File
@@ -1,8 +1,8 @@
name: river name: river
description: A dynamic tiling Wayland compositor description: A non-monolithic Wayland compositor
version: 0.4.1 version: 0.4.2
revision: 1 revision: 1
url: https://codeberg.org/river/river url: https://isaacfreund.com/software/river/
license: GPL3-only license: GPL3-only
maintainers: maintainers:
- [email protected] - [email protected]
@@ -13,19 +13,35 @@ depends:
- libevdev - libevdev
- libinput - libinput
- libxkbcommon - libxkbcommon
- mesa
- pixman - pixman
- wayland - wayland
- wlroots - wlroots
- xorg-xwayland - xorg-xwayland
optional_depends:
- polkit
make_depends: make_depends:
- scdoc - scdoc
- wayland-protocols - wayland-protocols
- zig - zig
conflicts:
- river-classic
downloads: downloads:
- url: https://codeberg.org/river/river/releases/download/v${BPM_PKG_VERSION}/river-${BPM_PKG_VERSION}.tar.gz - url: https://codeberg.org/river/river.git
extract_to: ${BPM_SOURCE} type: git
clone_to: ${BPM_SOURCE}
git_branch: v${BPM_PKG_VERSION}
checksum: addd4a0c5386fe3efc6d37cdde458d0f3153bebe
- url: https://codeberg.org/ifreund/zig-pixman/archive/v0.3.0.tar.gz
extract_to: zig-pixman
extract_strip_components: 1 extract_strip_components: 1
checksum: 066a4cd282ce47079abc7081da10a8c8df6e73d5c491268bf5dbb75769809ff0 checksum: cd7fe3415d4d58685a94fdedd308e9994a37f012828940cfb603461de7f2c6ad
- url: https://codeberg.org/ifreund/zig-wayland/archive/v0.5.0.tar.gz
extract_to: zig-wayland
extract_strip_components: 1
checksum: fa9705e83613b5555d7117ce5c602f10591d6598e69a73fba2e6039200db4f4b
- url: https://codeberg.org/ifreund/zig-wlroots/archive/v0.20.0.tar.gz
extract_to: zig-wlroots
extract_strip_components: 1
checksum: 75af3510386c639582693d01788579abde4dca9ce1ae6703c1e877ec8123d106
- url: https://codeberg.org/ifreund/zig-xkbcommon/archive/v0.4.0.tar.gz
extract_to: zig-xkbcommon
extract_strip_components: 1
checksum: e6df77d511cf9402f6ac08455c8d1fb727b6c3d66191e246671f62e5db083c49
+9
View File
@@ -2,6 +2,15 @@
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE # 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 # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
# The prepare function is executed in the root of the temp directory
# This function is used for putting downloaded files to the correct location or applying patches
prepare() {
zig fetch --global-cache-dir ./zig-global-cache "$BPM_WORKDIR"/zig-pixman
zig fetch --global-cache-dir ./zig-global-cache "$BPM_WORKDIR"/zig-wayland
zig fetch --global-cache-dir ./zig-global-cache "$BPM_WORKDIR"/zig-wlroots
zig fetch --global-cache-dir ./zig-global-cache "$BPM_WORKDIR"/zig-xkbcommon
}
# The build function is executed in the source directory # The build function is executed in the source directory
# This function is used to compile the source code # This function is used to compile the source code
build() { build() {