Republish bibata-cursor-theme to [breadway] (AUR-only upstream)

Bibata is the chosen BOS default cursor but is AUR-only, so mirror the
prebuilt -bin package into the [breadway] repo the same way calamares and
zen-browser-bin are. The workflow clones the triggering branch (not the
default branch) so it can build from iso-boot-fix, and uses the scoped
REGISTRY_TOKEN for publishing.
This commit is contained in:
Breadway 2026-06-16 13:01:38 +08:00
parent e885488bd6
commit 556c24a50a
2 changed files with 59 additions and 0 deletions

22
packaging/bibata/PKGBUILD Normal file
View file

@ -0,0 +1,22 @@
# BOS in-house rebuild of bibata-cursor-theme-bin (AUR-only upstream).
# Bibata is the BOS default cursor theme; the AUR package is republished to the
# [breadway] repo so the ISO build can pull it via pacman (same pattern as
# zen-browser-bin and calamares). Prebuilt release tarball — no build step.
# Upstream maintainer: Mark Wagie <mark dot wagie at proton dot me>
pkgname=bibata-cursor-theme-bin
pkgver=2.0.7
pkgrel=1
pkgdesc="Material Based Cursor Theme"
arch=('any')
url="https://github.com/ful1e5/Bibata_Cursor"
license=('GPL-3.0-or-later')
provides=("${pkgname%-bin}")
conflicts=("${pkgname%-bin}")
options=('!strip')
source=("${pkgname%-bin}-$pkgver.tar.xz::$url/releases/download/v$pkgver/Bibata.tar.xz")
sha256sums=('172e33c4ae415278384dcecc7d1a9b7a024266bc944bc751fd86532be1cc6251')
package() {
install -d "$pkgdir/usr/share/icons"
cp -r Bibata* "$pkgdir/usr/share/icons"
}