blob: c4d0e1c00158f9c4f92d7033958622f02726e551 (
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
40
41
42
|
# Maintainer: Radiolin <anton.osi2011@gmail.com>
pkgname=mangojuice
pkgver=0.8.5
pkgrel=1
pkgdesc="A convenient alternative to GOverlay for configuring MangoHud"
arch=(any)
url="https://github.com/radiolamp/${pkgname}"
license=(GPL-3.0-or-later)
depends=(
glib2
gtk4
libadwaita
libgee
mangohud
fontconfig
)
makedepends=(
git
meson
vala
)
optdepends=(
vulkan-tools
mesa-utils
vkbasalt
)
options=(!debug)
source=($url/archive/refs/tags/$pkgver.tar.gz)
b2sums=(c4845cdb65cc9bab3452300875f5edf1cb24bd0dd8b295e01e4575d3072765cba1015b177dda6afbea24505c802e6e212ebc5070510d3e019a3a4b7bf75e5475)
build() {
arch-meson ${pkgname}-$pkgver build
meson configure build --no-pager
meson compile -C build
}
package() {
meson install -C build --destdir "$pkgdir"
}
|