blob: 43db02427d1ce3001e5bebfd1284a154d56a7a12 (
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-powerprofiles-git
_pkgname=powerprofiles
pkgver=r250.2927230
pkgrel=1
provides=(astal-power-profiles libastal-power-profiles libastal-power-profiles.so=0-64)
pkgdesc="Library and cli to control upowerd powerprofiles"
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"
}
|