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. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
22 lines
895 B
Bash
22 lines
895 B
Bash
# 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"
|
|
}
|