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

pkgname=switchboard-plug-parental-controls-git
pkgver=3.0.1.r51.gb67e1e1
pkgrel=1
pkgdesc='Switchboard Parental Controls Plug'
arch=('x86_64')
url='https://github.com/elementary/switchboard-plug-parental-controls'
license=('GPL3')
groups=('pantheon-unstable')
depends=('accountsservice' 'gdk-pixbuf2' 'glib2' 'glibc' 'gtk3' 'libgee'
         'polkit' 'libhandy-1.so'
         'libgranite.so' 'libswitchboard-2.0.so')
makedepends=('git' 'granite-git' 'meson' 'switchboard' 'vala' 'libhandy')
provides=('switchboard-plug-parental-controls')
conflicts=('switchboard-plug-parental-controls')
source=('git+https://github.com/elementary/switchboard-plug-parental-controls.git')
sha256sums=('SKIP')

pkgver() {
  cd switchboard-plug-parental-controls

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

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

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

# vim: ts=2 sw=2 et: