lyra-cursors/PKGBUILD

39 lines
706 B
Bash
Raw Normal View History

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/
}