blob: 3e6d2aa720879f1698ca81b7501f8506bbb01958 (
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
|
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
pkgname=ignition-startup
pkgver=2.1.1
pkgrel=1
pkgdesc="Manage startup apps and scripts"
arch=('any')
url="https://github.com/flattool/ignition"
license=('GPL-3.0-or-later')
depends=(
'gjs'
'libadwaita'
)
makedepends=(
'blueprint-compiler'
'git'
'meson'
'typescript'
)
source=("git+https://github.com/flattool/ignition.git#tag=$pkgver"
'git+https://gitlab.gnome.org/BrainBlasted/gi-typescript-definitions.git')
sha256sums=('a2f7216c92ea907ac2db7409e1c0717fcb29c887ad103108bfa4476f7fb60117'
'SKIP')
prepare() {
cd ignition
git submodule init
git config submodule.gi-types.url "$srcdir/gi-typescript-definitions"
git -c protocol.file.allow=always submodule update
}
build() {
arch-meson ignition build
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"
}
|