* update wayland-utils to 1.2.0-2

This commit is contained in:
Alexander Baldeck 2024-08-09 14:25:02 +02:00
parent 39196c324d
commit be14629812
3 changed files with 33 additions and 7 deletions

17
wayland-utils/.SRCINFO Normal file
View File

@ -0,0 +1,17 @@
pkgbase = wayland-utils
pkgdesc = Wayland tools to display information about current compositor
pkgver = 1.2.0
pkgrel = 2
url = https://gitlab.freedesktop.org/wayland/wayland-utils
arch = x86_64
license = MIT
makedepends = git
makedepends = meson
makedepends = wayland-protocols
depends = glibc
depends = libdrm
depends = wayland
source = git+https://gitlab.freedesktop.org/wayland/wayland-utils#tag=1.2.0
sha256sums = 0e821bea8aad534b05c885946ca51e16251251296a3fbcae99a7a4033fa2946d
pkgname = wayland-utils

View File

@ -0,0 +1,5 @@
[wayland-utils]
source = 'gitlab'
gitlab = 'wayland/wayland-utils'
host = 'gitlab.freedesktop.org'
use_max_tag = true

View File

@ -4,18 +4,22 @@
pkgname=wayland-utils
pkgver=1.2.0
pkgrel=1
pkgrel=2
pkgdesc='Wayland tools to display information about current compositor'
url='https://gitlab.freedesktop.org/wayland/wayland-utils'
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
license=(MIT)
depends=(wayland libdrm)
makedepends=(meson wayland-protocols)
source=(https://gitlab.freedesktop.org/wayland/$pkgname/-/archive/$pkgver/$pkgname-$pkgver.tar.gz)
sha256sums=('2ccc0d31c7327f3739322d643e13c1346f2485ae860e837cf58524346d89566c')
depends=(glibc
libdrm
wayland)
makedepends=(git
meson
wayland-protocols)
source=(git+https://gitlab.freedesktop.org/wayland/$pkgname#tag=$pkgver)
sha256sums=('0e821bea8aad534b05c885946ca51e16251251296a3fbcae99a7a4033fa2946d')
build() {
meson $pkgname-$pkgver build \
meson $pkgname build \
--prefix /usr
meson compile -C build
}
@ -23,5 +27,5 @@ build() {
package() {
meson install -C build --destdir "$pkgdir"
install -Dm644 $pkgname-$pkgver/COPYING -t "$pkgdir"/usr/share/licenses/$pkgname
install -Dm644 $pkgname/COPYING -t "$pkgdir"/usr/share/licenses/$pkgname
}