summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 30caf6f2149c549cbca68fe6fd2c352a8b7ff676 (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
# Maintainer: kotontrion <kotontrion@tutanota.de>

pkgname=libastal-bluetooth-git
_pkgname=bluetooth
pkgver=r3.b6ca176
pkgrel=1
provides=(astal-bluetooth libastal-bluetooth libastal-bluetooth.so=0-64)
pkgdesc="library to control bluez over dbus "
arch=(x86_64)
license=(LGPL-2.1-only)
url="https://github.com/Aylur/astal"
depends=(
  glib2
  glibc
)
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"
}