blob: 6215d144ba92487506765e2dde756b93c1e10714 (
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
|
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
pkgname=switchboard-plug-power-git
pkgver=2.4.2.r64.g7cfc557
pkgrel=1
pkgdesc='Switchboard Power Plug'
arch=('x86_64')
url='https://github.com/elementary/switchboard-plug-power'
license=('GPL3')
groups=('pantheon-unstable')
depends=('glib2' 'glibc' 'gnome-settings-daemon' 'gtk3' 'libgee' 'polkit'
'libswitchboard-2.0.so')
makedepends=('git' 'granite-git' 'meson' 'switchboard' 'vala')
provides=('switchboard-plug-power')
conflicts=('switchboard-plug-power')
source=('git+https://github.com/elementary/switchboard-plug-power.git')
sha256sums=('SKIP')
pkgver() {
cd switchboard-plug-power
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
arch-meson switchboard-plug-power build
ninja -C build
}
package() {
DESTDIR="${pkgdir}" ninja -C build install
}
# vim: ts=2 sw=2 et:
|