blob: 69ca8fd1968bf961a8c3c626f6e8162e1b87b0dd (
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
|
# Maintainer: Ryan Farley <ryan.farley@gmx.com>
pkgname=waynergy
pkgver=0.0.17
pkgrel=1
pkgdesc="Synergy client for wayland compositors"
arch=(x86_64)
url="https://github.com/r-c-f/waynergy"
license=('MIT')
depends=('wayland' 'libxkbcommon' 'libretls')
makedepends=(git meson ninja)
optdepends=(
'wl-clipboard: Clipboard synchronization support'
'gnome-session: Idle inhibition for GNOME'
)
source=("$pkgname-$pkgver.tar.gz::https://github.com/r-c-f/waynergy/archive/refs/tags/v${pkgver}.tar.gz")
md5sums=('e94305fa9de56881d911d0f27d3b210d')
build() {
cd "$srcdir/${pkgname}-${pkgver}"
arch-meson build
cd build
ninja
}
package() {
cd "$srcdir/${pkgname}-${pkgver}/build"
DESTDIR="$pkgdir" ninja install
install -Dm644 ../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|