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

pkgname=flowtime
pkgver=3.1
pkgrel=1
pkgdesc="Get what motivates you done, without losing concentration"
arch=('x86_64' 'aarch64')
url="https://github.com/Diego-Ivan/Flowtime"
license=('GPL3')
depends=('gstreamer' 'libadwaita' 'libxml2' 'libgee')
makedepends=('git' 'meson' 'vala')
checkdepends=('appstream-glib')
_commit=efb540def77b36a5a9fb1f9d6713067fdaa0de9a # tags/3.1^0
source=("$pkgname::git+$url.git#commit=$_commit")
b2sums=('SKIP')

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

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

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

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