blob: 5ba0affc511e5610f5166e67ae09015f94b58d82 (
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
|
# Maintainer: kotontrion <kotontrion@tutanota.de>
pkgname=libastal-battery-git
_pkgname=battery
pkgver=r580.d538d8e
pkgrel=2
provides=(astal-battery libastal-battery libastal-battery.so=0-64)
pkgdesc="DBus proxy library for upower daemon"
arch=(x86_64)
license=(LGPL-2.1-only)
url="https://github.com/Aylur/astal"
depends=(
glib2
glibc
json-glib
)
makedepends=(
meson
git
gobject-introspection
vala
)
groups=("libastal")
source=("git+${url}.git")
sha256sums=('SKIP')
pkgver() {
cd astal
#git describe --long --tags --abbrev=7 | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
}
build() {
cd astal/lib/$_pkgname
arch-meson build
meson compile -C build
}
package() {
cd astal/lib/$_pkgname
meson install -C build --destdir "$pkgdir"
}
|