-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPKGBUILD
65 lines (58 loc) · 1.23 KB
/
PKGBUILD
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
55
56
57
58
59
60
61
62
63
64
# Maintainer: Silver Tuanzi
pkgname=gnome-calendar-linuxmint
_pkgname=gnome-calendar
pkgver=41.2
_realpkgver=43.really41+mint2
_pkgver=wilma
pkgrel=2
pkgdesc="Simple and beautiful calendar application designed to perfectly fit the GNOME desktop. Linux Mint version to fit the Cinnamon desktop."
url="https://apps.gnome.org/Calendar"
arch=(x86_64)
license=(GPL-3.0-or-later)
depends=(
dconf
evolution-data-server
gcc-libs
geoclue
glib2
glibc
graphene
gsettings-desktop-schemas
gtk3
libgweather-4
libical
libsoup3
libdazzle
pango
)
makedepends=(
git
glib2-devel
meson
)
provides=(
${_pkgname}
)
conflicts=(
${_pkgname}
)
optdepends=(
'gnome-online-accounts-gtk: Manage online accounts'
'xdg-desktop-portal-impl: Various user settings (e.g. 24-hour clock)'
)
source=("http://packages.linuxmint.com/pool/upstream/g/gnome-calendar/gnome-calendar_${_realpkgver}+${_pkgver}.tar.xz" "fix.patch")
sha256sums=('c4e67d3973ee5353c983d2ac5d3362914ca7ee2289fb1cd76d3d018d5a5df689' 'SKIP')
prepare() {
cd $_pkgname
patch -Np1 -i ../fix.patch
}
build() {
arch-meson $_pkgname build
meson compile -C build
}
check() {
meson test -C build --print-errorlogs
}
package() {
meson install -C build --destdir "$pkgdir"
}