blob: 0678620cddf4b23ad3e8ba76daa8b61b65a44427 (
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
|
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
pkgname=mendingwall
pkgver=0.3.8
pkgrel=2
pkgdesc="Fix issues when hopping between multiple desktop environments"
arch=('x86_64' 'aarch64')
url="https://mendingwall.indii.org"
license=('GPL-3.0-or-later')
depends=(
'gtk4'
'libadwaita'
'libportal'
)
makedepends=(
'blueprint-compiler'
'meson'
)
source=("$pkgname-$pkgver.tar.gz::https://github.com/lawmurray/mendingwall/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('e93a5d1a4e6f266b7207d9363ba7985dbc5a14fcc52749bd40c27fe01cfeb876')
build() {
arch-meson "$pkgname-$pkgver" build
meson compile -C build
}
check() {
meson test -C build --no-rebuild --print-errorlogs
}
package() {
meson install -C build --no-rebuild --destdir "$pkgdir"
}
|