summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a818bb729874363eef383cc34e2b1b2fe247c87d (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
# Maintainer: begin-theadventure <begin-thecontact.ncncb at dralias dot com>

pkgname=mousam
pkgver=1.1.0
_commit=de0a7a9084acd1dc3c83cff64a22c9e0e2a38c14
pkgrel=1
pkgdesc='Beautiful and lightweight weather app build using Gtk4, Libadwaita and Python'
url="https://github.com/amit9838/mousam"
license=('GPL-3.0-or-later')
arch=('x86_64' 'aarch64')
depends=('libadwaita' 'python')
makedepends=('git' 'meson')
checkdepends=('appstream-glib')
source=("git+$url.git#commit=$_commit")
sha256sums=('SKIP')

build() {
  arch-meson mousam build
  meson compile -C build
}

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

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