summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f9aed5e413024ad4132c838e9eb18ffbfd91e06f (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
# Maintainer: kotontrion <kotontrion@tutanota.de>
pkgname=("libastal-4-git")
pkgver=r540.c5eba25
pkgrel=1
pkgdesc="Building blocks for building desktop shells using gtk4."
arch=("x86_64")
license=(LGPL-2.1-only)
url="https://github.com/Aylur/astal"
makedepends=(
  "git"
  "gobject-introspection" "meson" "vala")
depends=("glib2" "glibc" "gtk4" "gtk4-layer-shell" "gdk-pixbuf2" "wayland" "libastal-io")
provides=(libastal-4 libastal-4.so=4-64)
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/astal/gtk4
  arch-meson build
  meson compile -C build
}

package() {
  cd astal/lib/astal/gtk4
  meson install -C build --destdir "$pkgdir"
}