summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 38ff39a404b8967e8b3350414f5fecf610c99b12 (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
27
28
29
30
31
32
# Maintainer:
# Contributor: timescam <timescam at duck dot com>

_pkgname="dracula-cursors"
pkgname="$_pkgname-git"
pkgver=4.0.0.r70.g6a4c251
pkgrel=1
pkgdesc="Dracula theme cursors"
url="https://github.com/dracula/gtk"
license=("GPL-3.0-or-later")
arch=("any")

makedepends=("git")

provides=("$_pkgname")

_pkgsrc="$_pkgname"
source=("$_pkgsrc"::"git+$url.git")
sha256sums=("SKIP")

pkgver() {
  cd "$_pkgsrc"

  git describe --long --tags --abbrev=7 --exclude='*[a-zA-Z][a-zA-Z]*' \
    | sed -E 's/^[^0-9]*//;s/([^-]*-g)/r\1/;s/-/./g'
}

package() {
  install -dm755 "$pkgdir/usr/share/icons"
  cp --reflink=auto -a "$_pkgsrc/kde/cursors/Dracula-cursors" "$pkgdir/usr/share/icons/"
  chmod -R u+rwX,go+rX,go-w "$pkgdir/"
}