All checks were successful
dev release / build (push) Successful in 1m17s
bakery already fully covers what the PKGBUILD provided (binary, systemd --user service where applicable, dependency declarations) except a LICENSE copy, which bakery.toml's new license_file field now closes. Removes packaging/arch/ and .forgejo/workflows/package.yml; adds the LICENSE artifact to each release/dev-release/beta-release workflow's prepare step. Not pacman-installed inside BOS today (BOS already consumes these apps exclusively via build-local.sh's skel-staging), so this only removes the option to `pacman -S` outside of BOS/bakery.
20 lines
473 B
TOML
20 lines
473 B
TOML
name = "bread"
|
|
description = "Reactive automation daemon and CLI for Linux desktops"
|
|
binaries = ["breadd", "bread"]
|
|
system_deps = ["systemd-libs", "openssl", "zlib"]
|
|
optional_system_deps = ["bluez", "hyprland"]
|
|
bread_deps = []
|
|
license_file = "LICENSE"
|
|
|
|
[[service]]
|
|
unit = "breadd.service"
|
|
enable = true
|
|
|
|
[config]
|
|
dir = "~/.config/bread"
|
|
example = "breadd.toml"
|
|
|
|
[install]
|
|
post_install = [
|
|
"systemctl --user is-active --quiet breadd || systemctl --user start breadd",
|
|
]
|