Date: Thursday, September 16, 2021 @ 10:39:41 Author: arojas Revision: 424139
New Plasma dependency Added: wayland-utils/ wayland-utils/trunk/ wayland-utils/trunk/PKGBUILD ----------+ PKGBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) Added: wayland-utils/trunk/PKGBUILD =================================================================== --- wayland-utils/trunk/PKGBUILD (rev 0) +++ wayland-utils/trunk/PKGBUILD 2021-09-16 10:39:41 UTC (rev 424139) @@ -0,0 +1,26 @@ +# Maintainer: Antonio Rojas <[email protected]> +# Contributor: Lex Black <[email protected]> + +pkgname=wayland-utils +pkgver=1.0.0 +pkgrel=2 +pkgdesc='Wayland tools to display information about current compositor' +url='https://gitlab.freedesktop.org/wayland/wayland-utils' +arch=(x86_64) +license=(MIT) +depends=(wayland) +makedepends=(meson wayland-protocols) +source=(https://gitlab.freedesktop.org/wayland/$pkgname/-/archive/$pkgname-$pkgver/$pkgname-$pkgname-$pkgver.tar.gz) +sha256sums=('72fc2471715077000f76833d72ad59ed24e3a3f77b47f77e45ae669bef99947a') + +build() { + meson $pkgname-$pkgname-$pkgver build \ + --prefix /usr + meson compile -C build +} + +package() { + meson install -C build --destdir "$pkgdir" + + install -Dm644 $pkgname-$pkgname-$pkgver/COPYING -t "$pkgdir"/usr/share/licenses/$pkgname +}
