summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 902f687a5306a54574aa493ff173eba04483d95d (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
# Maintainer: Igor Dyatlov <dyatlov.igor@protonmail.com>

pkgname=gnome-metronome-git
_pkgname=metronome
pkgver=1.0.0.r0.g43f1728
pkgrel=1
pkgdesc="Practice music with a regular tempo"
arch=('x86_64')
url="https://gitlab.gnome.org/aplazas/metronome"
license=('GPL3')
depends=('glib2' 'gstreamer' 'gst-plugins-base' 'libsass' 'sassc' 'gtk4' 'libadwaita')
makedepends=('git' 'meson' 'rust')
checkdepends=('appstream-glib')
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=(git+$url.git)
sha256sums=('SKIP')

pkgver() {
  cd "$srcdir/${_pkgname%-git}"
  git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

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

check() {
  meson test -C build --print-errorlogs
}

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