summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 817c871473d4f61865067719d5ea5258160c1147 (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-locale-git
pkgver=2.5.3.r7.g6b088dd
pkgrel=1
pkgdesc='Switchboard Locale Plug'
arch=('x86_64')
url='https://github.com/elementary/switchboard-plug-locale'
license=('GPL3')
depends=('accountsservice' 'glib2' 'glibc' 'gnome-desktop' 'gtk3' 'ibus'
         'libgee' 'polkit'
         'libswitchboard-2.0.so' 'libgranite.so')
makedepends=('git' 'granite-git' 'meson' 'switchboard' 'vala')
provides=('switchboard-plug-locale')
conflicts=('switchboard-plug-locale')
source=('git+https://github.com/elementary/switchboard-plug-locale.git')
sha256sums=('SKIP')

pkgver() {
  cd switchboard-plug-locale

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

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

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

# vim: ts=2 sw=2 et: