summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: cf7b2d9ada872291b37f6e3a55552fa6f02e9001 (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
34
35
36
37
38
39
# Maintainer: Philip Goto <philip.goto@gmail.com>
# Contributor: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>

pkgname=dconf-editor-git
pkgver=3.31.2.r107.gbe77980
pkgrel=1
pkgdesc="dconf Editor"
arch=(x86_64)
url="https://wiki.gnome.org/Projects/dconf"
license=(GPL3)
groups=(gnome-extra)
depends=(gtk3 dconf)
makedepends=(vala meson appstream-glib git)
provides=(dconf-editor)
conflicts=(dconf-editor)
source=("git+https://gitlab.gnome.org/GNOME/dconf-editor.git")
sha256sums=('SKIP')

pkgver() {
  cd dconf-editor
  git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

prepare() {
  cd dconf-editor
}

build() {
  arch-meson dconf-editor build
  ninja -C build
}

check() {
  meson test -C build
}

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