Initial commit

This commit is contained in:
Christian Schendel 2025-08-31 17:58:54 +02:00
commit 2e972b7633
Signed by: doppelhelix
GPG key ID: 5874D2437CD5BBB3
8 changed files with 176 additions and 0 deletions

38
PKGBUILD Normal file
View file

@ -0,0 +1,38 @@
# Maintainer: Christian Schendel <doppelhelix@gmail.com>
# Contributor: giskard <rtgiskard@gmail.com>
pkgname=bibata-modern-ice-cursor
pkgver=1.0.0
pkgrel=1
pkgdesc='Bibata Cursor Theme (Modern Ice only), including hyprcursor and Xcursor'
arch=('any')
url="https://github.com/rtgiskard/bibata_cursor"
license=(
GPL-3.0-or-later
)
conflicts=(
bibata-cursor-theme
)
makedepends=(
git
librsvg
python
xorg-xcursorgen
)
options=('!strip')
source=("$pkgname-$pkgver::git+$url.git#tag=v$pkgver")
b2sums=('15cde380e3da5815a0a2def4c03e11214eb6c8386d9c9b9b956da8001bfe051834ec89f8e705e99d88df3a53d5810a9de41bdaba1fe61b66826bc8b78aeb793b')
build() {
cd "$pkgname-$pkgver"
./src/cursor_utils.py --hypr --x11 --x11-symlink all --theme Bibata-Modern-Ice --out-dir out
}
package() {
cd "$pkgname-$pkgver"
install -d "$pkgdir/usr/share/icons"
cp -r out/Bibata-* "$pkgdir/usr/share/icons/"
install -Dm0644 -t "$pkgdir/usr/share/doc/$pkgname/" readme.adoc
}
# vim: set ft=sh ts=4 sw=4 et: