Files
nevaforget 0f85c50e6f
Build and publish packages / build-and-publish (push) Successful in 7m6s
chore: bump pkgrel to retrigger build after I/O caps applied
Run 106 hung the host before I/O caps were in place. act_runner now has 30 MB/s + 500 IOPS hard limits via blkio_config; this commit retriggers the build that failed mid-compile.
2026-04-28 10:10:26 +02:00

32 lines
843 B
Bash

# ABOUTME: PKGBUILD for Sweet-cursors — cursor theme from the Sweet project.
# ABOUTME: Installs the cursor theme to /usr/share/icons/Sweet-cursors.
# Maintainer: Dominik Kressler
pkgname=sweet-cursors-git
epoch=1
pkgver=r1.4b49c35
pkgrel=4
pkgdesc="Sweet cursor theme"
arch=('any')
url="https://gitea.moonarch.de/nevaforget/Sweet-cursors"
license=('GPL3')
makedepends=('git')
provides=('sweet-cursors')
conflicts=('sweet-cursors')
source=("git+${url}.git")
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/Sweet-cursors"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$srcdir"
install -dm755 "$pkgdir/usr/share/icons"
cp -r Sweet-cursors "$pkgdir/usr/share/icons/"
# Remove .git directory from installed files
rm -rf "$pkgdir/usr/share/icons/Sweet-cursors/.git"
}