blob: 6572b33b2c08935c7ecc022c325b0f588b0503f3 (
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
|
# Maintainer: Wenqian <lazycat7706@gmail.com>
pkgname=csync-release
pkgver=0.7.2
pkgrel=1
pkgdesc="Share your clipboard between different devices"
arch=('x86_64')
url="https://github.com/fioncat/csync"
license=('MIT')
source=("$pkgname-$pkgver::https://github.com/fioncat/csync/releases/download/v${pkgver}/csync-x86_64-unknown-linux-gnu.tar.gz")
sha256sums=('8eb830e33ff6ec521ae02fd5ca5cf4b002b7ca6913598e216e231f672ab3c856')
options=('!strip' '!debug')
depends=(
'webkit2gtk-4.1'
'gtk3'
'xdotool'
'libappindicator-gtk3'
)
depends_wayland=('wl-clipboard')
package() {
if [[ "$XDG_SESSION_TYPE" == "wayland" ]]; then
depends+=("${depends_wayland[@]}")
fi
install -Dm755 "csync-server" "$pkgdir/usr/bin/csync-server"
install -Dm755 "csyncd" "$pkgdir/usr/bin/csyncd"
install -Dm755 "csynctl" "$pkgdir/usr/bin/csynctl"
}
|