From 27d2f14680e38effe2d4ccfe44faa9ea1a4bfc3b Mon Sep 17 00:00:00 2001 From: Brett Cornwall Date: Thu, 30 Jan 2020 21:06:49 +0000 Subject: [PATCH] Include contrib/ scripts --- PKGBUILD | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/PKGBUILD b/PKGBUILD index a617d5e..a93aab4 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname=sway pkgver=1.4 epoch=1 -pkgrel=4 +pkgrel=5 pkgdesc='Tiling Wayland compositor and replacement for the i3 window manager' arch=(x86_64) url='https://swaywm.org/' @@ -50,6 +50,11 @@ package() { DESTDIR="$pkgdir" ninja -C build install install -Dm644 "$pkgname-$pkgver/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" install -Dm644 50-systemd-user.conf -t "$pkgdir/etc/sway/config.d/" + + for util in autoname-workspaces.py inactive-windows-transparency.py grimshot; do + install -Dm755 "$pkgname-$pkgver/contrib/$util" -t \ + "$pkgdir/usr/share/$pkgname/scripts" + done } # vim: ts=2 sw=2 et