blob: e241f6398ae41978a5a45053041e31910d6dc5f6 (
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
|
# Maintainer: Desmond Kabus <desmond.kabus@protonmail.com>
pkgname=remind-dav-helper-git
pkgver=r16.21caf2d
pkgrel=1
pkgdesc="Helper scripts to sync 'remind' files with Nextcloud via CalDAV"
arch=('any')
url="https://gitlab.com/dkabus/remind-dav-helper"
license=('GPL')
groups=()
depends=('remind' 'remind-agenda' 'python-remind-caldav' 'bash' 'systemd' 'fzf')
makedepends=('git' 'make')
provides=('remind-dav-helper')
conflicts=('remind-dav-helper')
replaces=()
backup=()
options=()
install=
source=('remind-dav-helper-git::git+https://gitlab.com/dkabus/remind-dav-helper')
noextract=()
md5sums=('SKIP')
pkgver() {
cd "$srcdir/${pkgname}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$srcdir/${pkgname}"
make DESTDIR="$pkgdir/" install
}
|