blob: ed5a6cb697e8a40c0ceb450e98fe22543a139507 (
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: Mark Wagie <mark dot wagie at proton dot me>
# Contributor: Francois Menning <f.menning@pm.me>
pkgname=volantes-cursors-git
pkgver=r7.b13a4bb
pkgrel=1
pkgdesc="Classic cursor with a flying style."
arch=('any')
url="https://github.com/varlesh/volantes-cursors"
license=('GPL-2.0-or-later')
makedepends=('git' 'inkscape' 'libcanberra' 'xorg-xcursorgen')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
options=('!strip')
source=("git+https://github.com/varlesh/volantes-cursors.git")
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/${pkgname%-git}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "$srcdir/${pkgname%-git}"
export NO_AT_BRIDGE=1
export DBUS_SESSION_BUS_ADDRESS=disabled
make build
}
package() {
cd "$srcdir/${pkgname%-git}"
make DESTDIR="$pkgdir" install
}
|