Update package version to 0.4.1

This commit is contained in:
2026-03-22 13:08:18 +02:00
parent 4d609b0c06
commit 79113a121c
2 changed files with 29 additions and 11 deletions
+5 -3
View File
@@ -1,9 +1,11 @@
name: river name: river
description: A dynamic tiling Wayland compositor description: A dynamic tiling Wayland compositor
version: 0.3.12 version: 0.4.1
revision: 2 revision: 1
url: https://codeberg.org/river/river url: https://codeberg.org/river/river
license: GPL3-only license: GPL3-only
maintainers:
- [email protected]
architecture: any architecture: any
type: source type: source
depends: depends:
@@ -26,4 +28,4 @@ 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/releases/download/v${BPM_PKG_VERSION}/river-${BPM_PKG_VERSION}.tar.gz
extract_to: ${BPM_SOURCE} extract_to: ${BPM_SOURCE}
extract_strip_components: 1 extract_strip_components: 1
checksum: 06376cc7b38eb2307030f7ec0954db119d83c55a5226abe4c363c2dbec6f40c3 checksum: 066a4cd282ce47079abc7081da10a8c8df6e73d5c491268bf5dbb75769809ff0
+24 -8
View File
@@ -5,13 +5,33 @@
# 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() {
DESTDIR=build zig build --summary all --prefix /usr --search-prefix /usr --global-cache-dir ../zig-global-cache -Dtarget=native-linux.6.1-gnu.2.38 -Dcpu=baseline -Dpie -Doptimize=ReleaseSafe -Dxwayland install DESTDIR=build zig build \
--summary all \
--prefix /usr \
--search-prefix /usr \
--global-cache-dir ../zig-global-cache \
--build-id=sha1 \
-Dtarget=native-linux.6.6-gnu.2.40 \
-Dcpu=baseline \
-Dpie \
-Doptimize=ReleaseSafe \
-Dxwayland
} }
# The check function is executed in the source directory # The check function is executed in the source directory
# This function is used to run tests to verify the package has been compiled correctly # This function is used to run tests to verify the package has been compiled correctly
check() { check() {
zig build test --summary all --prefix /usr --search-prefix /usr --global-cache-dir ../zig-global-cache -Dtarget=native-linux.6.1-gnu.2.38 -Dcpu=baseline -Dpie -Doptimize=ReleaseSafe -Dxwayland DESTDIR=build zig build test \
--summary all \
--prefix /usr \
--search-prefix /usr \
--global-cache-dir ../zig-global-cache \
--build-id=sha1 \
-Dtarget=native-linux.6.6-gnu.2.40 \
-Dcpu=baseline \
-Dpie \
-Doptimize=ReleaseSafe \
-Dxwayland
} }
# The package function is executed in the source directory # The package function is executed in the source directory
@@ -19,13 +39,9 @@ check() {
package() { package() {
cp -a build/* -t "$BPM_OUTPUT" cp -a build/* -t "$BPM_OUTPUT"
# Install configuration file
install -Dm755 example/init "$BPM_OUTPUT"/usr/share/river/example/init
# Install session file # Install session file
install -Dm644 contrib/river.desktop "$BPM_OUTPUT"/usr/share/wayland-sessions/river.desktop install -Dm644 contrib/river.desktop "$BPM_OUTPUT"/usr/share/wayland-sessions/river.desktop
# Install package license # Install package licenses
install -Dm644 README.md "$BPM_OUTPUT"/usr/share/doc/river/README.md install -Dm644 LICENSES/{0BSD,MIT}.txt -t "$BPM_OUTPUT"/usr/share/licenses/river
install -Dm644 LICENSE "$BPM_OUTPUT"/usr/share/licenses/river/LICENSE
} }