summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4a7842294d4cb5c3f7f0a156c8949f8f20217f75 (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
33
# Maintainer: Pellegrino Prevete <pellegrinoprevete@gmail.com>
# Contributor: Balló György <ballogyor+arch at gmail dot com>
# Contributor: graysky <graysky at archlinux dot us>

_pkgname=deja-dup
pkgname=$_pkgname-git
pkgver=43.beta+14+g9052f8b7
pkgrel=2
pkgdesc="Simple backup tool, that hides the complexity of backing up the Right Way and uses duplicity as the backend"
arch=('any')
url="https://wiki.gnome.org/Apps/DejaDup"
license=(GPL)
depends=(duplicity gtk4 gvfs libadwaita libsecret org.freedesktop.secrets python-gobject python-pydrive)
makedepends=(appstream-glib git itstool meson vala)
source=("git+https://gitlab.gnome.org/World/$_pkgname")
conflicts=("deja-dup")
provides=("deja-dup")
validpgpkeys=('A3A5C2FC56AE7341D308D8571B50ECA373F3F233') # Michael Terry
sha512sums=('SKIP')

pkgver() {
  cd $_pkgname
  git describe --tags | sed 's/-/+/g'
}

build() {
  arch-meson $_pkgname build
  meson compile -C build
}

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