summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 44eafad1d9f40ffeb3e04437ee6b4d62f1bb6cc1 (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
33
# Maintainer: Diab Neiroukh <officiallazerl0rd@gmail.com>

pkgname=layan-cursor-theme-git
_reponame='Layan-cursors'
pkgver=0.0.0.7a37de2
pkgrel=2
pkgdesc='A x-cursor theme inspired by layan gtk theme and based on capitaine-cursors.'
arch=("any")
provides=("layan-cursor-theme")
conflicts=("layan-cursor-theme")
url="https://github.com/vinceliuice/${_reponame}"
license=("GPL3")
makedepends=("git")
source=("git+${url}.git")
sha256sums=('SKIP')

pkgver(){
    cd "${srcdir}/${_reponame}"
    if [ $(git tag|wc -l) == 0 ]; then
        echo "0.0.0.$(git log -1 --format='%h')"
    else
        git describe --tags | sed 's/-/.r/; s/-g/./'
    fi
}

package() {
    dst="${pkgdir}/usr/share/icons"
    mkdir -p "${dst}"
    cd "${srcdir}/${_reponame}"
    cp -r dist/ "${dst}/Layan-cursors"
    cp -r dist-border/ "${dst}/Layan-border-cursors"
    cp -r dist-white/ "${dst}/Layan-white-cursors"
}