summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 17c80fecad20d1816772418cef904e695c6eccc1 (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
# Maintainer: Vasket <vasket at  dismail dot de>

pkgname="evolution-decsync"
_pkgname="Evolution-DecSync"
pkgver="git"
pkgrel="2"
pkgdesc="DecSync Plugin for Evolution. It syncs contact and calendars to a directory, which can be shared with syncthing or rsync"
arch=(x86_64 i686 armv7h aarch64)
license=("LGPL")
url="https://github.com/39aldo39/${_pkgname}"
depends=(libgee json-glib evolution-data-server evolution)
makedepends=(cmake meson ninja vala git)
provides=("evolution-decsync")

source=("git+https://github.com/39aldo39/${_pkgname}")
sha256sums=("SKIP")

build() {
    cd "${_pkgname}"
    meson build
    ninja -C build
}

package() {
	cd "${_pkgname}"
  DESTDIR="${pkgdir}" meson install -C build

}