Initial Commit

Uses fork of Lyra-Cursors that fixes some stuff.
This commit is contained in:
LordMZTE 2022-05-08 11:36:46 +02:00
commit ee6a611e62
Signed by: LordMZTE
GPG Key ID: B64802DC33A64FF6
3 changed files with 55 additions and 0 deletions

13
.SRCINFO Normal file
View File

@ -0,0 +1,13 @@
pkgbase = lyra-cursors
pkgdesc = An x-cursor theme inspired by macOS and based on [capitaine-cursors](https://github.com/keeferrourke/capitaine-cursors).
pkgver = 1.0.0
pkgrel = 1
url = https://github.com/KiranWells/Lyra-Cursors
arch = any
license = GPL3
makedepends = xorg-xcursorgen
makedepends = inkscape
source = git+https://github.com/KiranWells/Lyra-Cursors
sha256sums = SKIP
pkgname = lyra-cursors

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
Lyra-Cursors/
pkg/
src/
*.zst

38
PKGBUILD Normal file
View File

@ -0,0 +1,38 @@
pkgname="lyra-cursors"
pkgver="1.0.0"
pkgrel=1
pkgdesc="An x-cursor theme inspired by macOS and
based on [capitaine-cursors](https://github.com/keeferrourke/capitaine-cursors)."
arch=("any")
url="https://github.com/KiranWells/Lyra-Cursors"
makedepends=("xorg-xcursorgen" "inkscape")
license=("GPL3")
source=("git+https://github.com/KiranWells/Lyra-Cursors")
sha256sums=('SKIP')
build() {
THEMENAMES="
LyraB
LyraF
LyraG
LyraP
LyraQ
LyraR
LyraS
LyraX
LyraY
"
for THEME in $THEMENAMES; do
cd $srcdir/Lyra-Cursors/
./build.sh $THEME
done
}
package() {
# Destination directory
DEST_DIR="$pkgdir/usr/share/icons"
mkdir -p $DEST_DIR
cp -pr $srcdir/Lyra-Cursors/dist/*-cursors $DEST_DIR/
}