blob: c340a9d9b5c98d016b0d0db955ee6b562071f61d (
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
55
56
57
58
59
60
61
62
63
64
65
|
# Maintainer: Silvio Fricke <silvio.fricke@gmail.com>
# Contributor: Yosef Or Boczko <yoseforb@gnome.org>
_pkgname=evolution-data-server
pkgname=$_pkgname-git
pkgver=3.50.0.r027.g3a06900142
pkgrel=1
pkgdesc="Centralized access to appointments and contacts"
arch=(i686 x86_64)
depends=(gtk4
libcanberra
libgoa
libgweather-4
libical
libphonenumber
nss
webkit2gtk-4.1
webkitgtk-6.0
)
makedepends=(git
gnome-common
gobject-introspection
gperf
gtk-doc
vala
)
options=(debug strip)
install=$_pkgname.install
url="https://wiki.gnome.org/Apps/Evolution"
license=(GPL)
provides=("${_pkgname}")
conflicts=("${_pkgname}")
replace=("${_pkgname}")
source=(evolution-data-server::git+https://gitlab.gnome.org/GNOME/evolution-data-server.git)
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/$_pkgname"
git describe --long | awk -F '-' '/-/{ printf "%s.r%3.3d.%s\n", $1, $2, $3 }'
}
build() {
cd "$srcdir/$_pkgname"
[ ! -d build ] && mkdir build
cd build
cmake .. -G Ninja \
-DCMAKE_INSTALL_PREFIX=/usr \
-DLIBEXEC_INSTALL_DIR=/usr/lib \
-DSYSCONF_INSTALL_DIR=/etc \
-DENABLE_GTK_DOC=OFF \
-DENABLE_INTROSPECTION=ON \
-DENABLE_UOA=OFF \
-DENABLE_VALA_BINDINGS=ON \
-DWITH_PHONENUMBER=ON \
-DENABLE_WEATHER=ON \
ninja
}
package() {
cd "$srcdir/$_pkgname/build"
DESTDIR="$pkgdir" ninja install
}
|