blob: bd58724036cc293d8dfeef00e81ef49c8cc86939 (
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: Celio Grand <celiogrand@outlook.com>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Roman Kyrylych <Roman.Kyrylych@gmail.com>
# Contributor: Lee.MaRS <leemars@gmail.com>
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
pkgname=xcursor-flatbed
pkgver=0.6.0
pkgrel=1
pkgdesc="Flatbed XCursor Theme"
arch=('any')
url="https://www.limitland.de/flatbedcursors.html"
license=('GPL3')
makedepends=('git' 'xorg-xcursorgen' 'librsvg' 'bc')
source=("git+https://gitlab.com/limitland/flatbedcursors.git#tag=$pkgver")
md5sums=('SKIP')
package() {
cd "$srcdir/flatbedcursors"
export ICONSDIR="$pkgdir/usr/share/icons/"
mkdir -p "$ICONSDIR"
./install-all
}
|