blob: 7aa8b018e39fd6fc42ac63a4f77514ebc0135c96 (
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
|
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
pkgname=switchboard-plug-online-accounts-git
pkgver=8.0.0.r61.gd17e3678
pkgrel=1
pkgdesc='Switchboard Online Accounts Plug'
arch=(x86_64)
url=https://github.com/elementary/switchboard-plug-onlineaccounts
license=(GPL-3.0-or-later)
groups=(pantheon-unstable)
depends=(
glib2
glibc
gtk3
json-glib
libaccounts-glib
evolution-data-server
libgee
libgranite-7.so
libswitchboard-3.so
rest
webkit2gtk
)
makedepends=(
git
granite
meson
switchboard
vala
)
provides=(switchboard-plug-online-accounts)
conflicts=(switchboard-plug-online-accounts)
source=(switchboard-plug-online-accounts::git+https://github.com/elementary/switchboard-plug-onlineaccounts.git)
sha256sums=(SKIP)
pkgver() {
cd switchboard-plug-online-accounts
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
arch-meson switchboard-plug-online-accounts build
ninja -C build
}
package() {
DESTDIR="${pkgdir}" ninja -C build install
}
# vim: ts=2 sw=2 et:
|