blob: cb71c3966a3db6a5d6d83fed49e9ca18ae05f37f (
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
43
44
45
46
|
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
pkgname=ignition-startup
_app_id=io.github.flattool.Ignition
pkgver=2.4.1
pkgrel=2
pkgdesc="Manage startup apps and scripts"
arch=('any')
url="https://github.com/flattool/ignition"
license=('GPL-3.0-or-later')
depends=(
'gjs'
'gtk4'
'libadwaita'
)
makedepends=(
'blueprint-compiler'
'git'
'meson'
'typescript'
)
source=("git+https://github.com/flattool/ignition.git#tag=$pkgver"
'git+https://github.com/flattool/gir-ts-types.git')
sha256sums=('7fcf6796bd3a84777512f11fae049f680408424d0590e4816377a6734c092b95'
'SKIP')
prepare() {
cd ignition
git submodule init
git config submodule.gi-types.url "$srcdir/gir-ts-types"
git -c protocol.file.allow=always submodule update
}
build() {
arch-meson ignition build -Dtests=false
meson compile -C build
}
check() {
meson test -C build --no-rebuild --print-errorlogs
}
package() {
meson install -C build --no-rebuild --destdir "$pkgdir"
ln -s /usr/bin/io.github.flattool.Ignition "$pkgdir/usr/bin/ignition"
}
|