blob: e7b0119f3bc42856d3cee013870ec662917626d1 (
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
|
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
pkgname=switchboard-plug-online-accounts-git
pkgver=2.0.1.r420.gbb936d7
pkgrel=1
pkgdesc='Switchboard Online Accounts Plug'
arch=(x86_64)
url=https://github.com/elementary/switchboard-plug-onlineaccounts
license=(GPL2)
groups=(pantheon-unstable)
depends=(
glib2
glibc
gtk3
json-glib
libaccounts-glib
libgee
libgranite.so
libgsignon-glib
libsignon-glib
libswitchboard-2.0.so
rest
webkit2gtk
)
makedepends=(
git
granite-git
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:
|