blob: 79e66dcef109418e50f4f78d47cd72962b87e4f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
pkgname=capitaine-cursors
pkgver=3
pkgrel=0
pkgdesc="An x-cursor theme inspired by macOS and based on KDE Breeze"
url="https://github.com/keeferrourke/capitaine-cursors"
arch="noarch"
license="GPL-3.0"
source="https://github.com/keeferrourke/capitaine-cursors/archive/r$pkgver.tar.gz"
options="!check"
builddir="$srcdir"/$pkgname-r$pkgver
build() {
return 0
}
package() {
cd "$builddir"
mkdir -p "$pkgdir"/usr/share/icons/capitaine-cursors
cp -pr dist/* "$pkgdir"/usr/share/icons/capitaine-cursors/
}
sha512sums="482347f1358cdefd7f4f30057da9c2116b4a1a56ce0f40339fb8461770c709963bb5c57ee16b9b927f39089f553a268e34709dbf5edc5c839f508c48dd57e2d7 r3.tar.gz"
|