mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-26 14:21:14 +08:00
32 lines
903 B
Bash
32 lines
903 B
Bash
|
pkgname=rustdesk
|
||
|
pkgver=1.1.9
|
||
|
pkgrel=0
|
||
|
epoch=
|
||
|
pkgdesc=""
|
||
|
arch=('x86_64')
|
||
|
url=""
|
||
|
license=('GPL-3.0')
|
||
|
groups=()
|
||
|
depends=('gtk3' 'xdotool' 'libxcb' 'libxfixes' 'alsa-lib' 'pulseaudio' 'ttf-arphic-uming' 'python-pip' 'curl')
|
||
|
makedepends=()
|
||
|
checkdepends=()
|
||
|
optdepends=()
|
||
|
provides=()
|
||
|
conflicts=()
|
||
|
replaces=()
|
||
|
backup=()
|
||
|
options=()
|
||
|
install=pacman_install
|
||
|
changelog=
|
||
|
noextract=()
|
||
|
md5sums=() #generate with 'makepkg -g'
|
||
|
|
||
|
package() {
|
||
|
install -Dm 755 ${HBB}/target/release/${pkgname} -t "${pkgdir}/usr/bin"
|
||
|
install -Dm 644 ${HBB}/libsciter-gtk.so -t "${pkgdir}/usr/lib/rustdesk"
|
||
|
install -Dm 644 $HBB/rustdesk.service -t "${pkgdir}/usr/share/rustdesk/files"
|
||
|
install -Dm 644 $HBB/rustdesk.desktop -t "${pkgdir}/usr/share/rustdesk/files"
|
||
|
install -Dm 644 $HBB/pynput_service.py -t "${pkgdir}/usr/share/rustdesk/files"
|
||
|
install -Dm 644 $HBB/256-no-margin.png "${pkgdir}/usr/share/rustdesk/files/rustdesk.png"
|
||
|
}
|