summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6241a4896da39d8131b942d20a076b4508e083fd (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
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>

pkgname=switchboard-plug-sharing-git
pkgver=2.1.4.r48.g2a0eb27
pkgrel=1
pkgdesc='Switchboard Sharing Plug'
arch=('x86_64')
url='https://github.com/elementary/switchboard-plug-sharing'
license=('GPL3')
groups=('pantheon-unstable')
depends=('glib2' 'glibc' 'gtk3' 'libgee'
         'libgranite.so' 'libswitchboard-2.0.so')
makedepends=('git' 'granite-git' 'meson' 'switchboard' 'vala')
provides=('switchboard-plug-sharing')
conflicts=('switchboard-plug-sharing')
source=('git+https://github.com/elementary/switchboard-plug-sharing.git')
sha256sums=('SKIP')

pkgver() {
  cd switchboard-plug-sharing

  git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  arch-meson switchboard-plug-sharing build
  ninja -C build
}

package() {
  DESTDIR="${pkgdir}" ninja -C build install
}

# vim: ts=2 sw=2 et: