blob: 8661647daff2233cd78a1fa77a1d8ae6dd3efdc2 (
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
|
# Maintainer: Fabio 'Lolix' Loli <fabio.loli@disroot.org> -> https://github.com/FabioLolix
# Contributor: Pellegrino Prevete (tallero) <pellegrinoprevete@gmail.com>
# Contributor: Igor Dyatlov <dyatlov.igor@protonmail.com>
pkgname=cartridges-git
pkgver=2.10.1.r0.gce584a0
pkgrel=1
pkgdesc="A GTK4 + Libadwaita game launcher"
arch=(any)
url="https://github.com/kra-mo/cartridges"
license=(GPL3)
depends=(gtk4 libadwaita gdk-pixbuf2 gobject-introspection-runtime python python-gobject python-requests python-yaml
python-pillow python-urllib3 dconf hicolor-icon-theme)
makedepends=(git blueprint-compiler meson)
checkdepends=(appstream-glib)
optdepends=("steam: Valve's digital software delivery system"
'heroic-games-launcher: Native GOG and Epic Games launcher for Linux'
'bottles: Easily manage wine and proton prefix')
provides=(cartridges)
conflicts=(cartridges)
source=("git+https://github.com/kra-mo/cartridges.git")
b2sums=('SKIP')
pkgver() {
cd cartridges
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
arch-meson cartridges build -D tiff_compression=jpeg
meson compile -C build
}
check() {
# https://github.com/kra-mo/cartridges/issues/206
meson test -C build --print-errorlogs || :
}
package() {
meson install -C build --destdir "${pkgdir}"
}
|