blob: 677b5c63f9e2b9336d7abbe744db13e214223a43 (
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
47
48
49
50
51
52
53
54
|
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
pkgname=planify
_app_id=io.github.alainm23.planify
pkgver=4.12.0
pkgrel=1
pkgdesc="Task manager with Todoist and Nextcloud support"
arch=('x86_64')
url="https://github.com/alainm23/planify"
license=('GPL-3.0-or-later')
depends=(
'evolution-data-server'
'granite7'
'gtksourceview5'
'gxml'
'libadwaita'
'libportal-gtk4'
'webkitgtk-6.0'
)
makedepends=(
'git'
'gobject-introspection'
'meson'
'vala'
)
conflicts=('elementary-planner')
source=("git+https://github.com/alainm23/planify.git#tag=$pkgver"
'quick-add.patch')
sha256sums=('919b6352ffccc526db0874dbba110eed77a0789936e3a6a6434221a13ec3dfe7'
'7dbb298442c04502521835581acc454d3a3085b81161ca0bfb3d04e5f01c69a2')
prepare() {
cd "$pkgname"
# Adjust Quick Add command
patch -Np1 -i ../quick-add.patch
}
build() {
arch-meson "$pkgname" build -Dprofile=default
meson compile -C build
}
check() {
meson test -C build --no-rebuild --print-errorlogs
appstreamcli validate --no-net "build/data/${_app_id}.appdata.xml"
}
package() {
meson install -C build --no-rebuild --destdir "$pkgdir"
ln -s "/usr/bin/${_app_id}" "$pkgdir/usr/bin/$pkgname"
ln -s "/usr/bin/${_app_id}.quick-add" "$pkgdir/usr/bin/$pkgname.quick-add"
}
|