blob: 653a8478158830f67b148a162f1dae70ae53aafa (
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=2
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="GPL3"
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
cp -pr bin/xcursors "$pkgdir"/usr/share/icons/capitaine-cursors
}
sha512sums="eee5b2a82434c0ad7bf3978a083439da8798dc9dd244eae4c733e82e66b4ffe9df25a322aa28399034fbdb5489bcedb70ed8afec78db94dc8c8513650a0f94da r2.tar.gz"
|