summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0ddeb064e8ec4ae1807fbce9a6f70a22469ae31d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Maintainer: thorou <thorou@chirality.de>

_pkgname=sunset-cursors
pkgname=sunset-cursors-git
pkgver=1.0.0
pkgrel=1
pkgdesc="Sunset Cursors for linux desktops"
arch=(any)
url="https://github.com/yeyushengfan258/Sunset-Cursors"
license=('GPL3')
depends=()
source=("$_pkgname::git+https://github.com/yeyushengfan258/Sunset-Cursors.git")

sha256sums=('SKIP')

package() {
	local src="$srcdir/$_pkgname/dist"
	local dest="$pkgdir/usr/share/icons/$_pkgname"
	
	install -dm755 "$dest/cursors"
	install -m644 "$src/index.theme" "$dest"
	
	# cp to preserve symlinks
	cp -a $src/cursors/* "$dest/cursors"
	chmod 644 $dest/cursors/*
}