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

pkgname=gtk-session-lock
pkgver=0.2.0
pkgrel=1
provides=(libgtk-session-lock.so=0-64)
conflicts=(gtk-session-lock-git)
pkgdesc="A library to create screen lockers for Wayland using the ext-session-lock protocol"
arch=(x86_64)
license=(GPL3)
url="https://github.com/Cu3PO42/gtk-session-lock"
depends=(
  gtk3
  wayland
)
makedepends=(
  meson
  gobject-introspection
  vala
  wayland-protocols
)
source=("$pkgname-$pkgver.tar.gz::https://github.com/Cu3PO42/gtk-session-lock/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=('a4245c6930580c15ed263b9a7bb7e39f47693baec78be1026b4e0e28b233cb4e')

build() {
  cd "$pkgname-$pkgver"
  arch-meson build
  meson compile -C build
}

package() {
  cd "$pkgname-$pkgver"
  meson install -C build --destdir "$pkgdir"
}