summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 29730c0d63e3abc6f4497c8416ed82274fe901d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Grant Moyer <grantmoyer@gmail.com>

pkgname=xcursor-box-cursor
pkgver=1.0.0
pkgrel=2
pkgdesc='A minimal cursor theme'
arch=('any')
url="https://gitlab.com/GrantMoyer/$pkgname.git"
license=('MIT')
makedepends=('imagemagick' 'inkscape' 'python' 'xorg-xcursorgen')
source=("git+https://gitlab.com/GrantMoyer/$pkgname.git#tag=v$pkgver")
sha512sums=('SKIP')

build() {
    cd "$pkgname"
    python build.py
}

package() {
    install -d "$pkgdir/usr/share/icons/$pkgname/"
    cp -r "$pkgname/target/cursors/" "$pkgdir/usr/share/icons/$pkgname/"
}