mirror of
https://aur.archlinux.org/realvnc-vnc-server.git
synced 2025-11-28 12:10:37 +08:00
28 lines
1.4 KiB
Bash
28 lines
1.4 KiB
Bash
# Maintainer: ava1ar <mail(at)ava1ar(dot)me>
|
|
# Maintainer: Kewl <xrjy@nygb.rh.bet(rot13)>
|
|
# Contributor: Star Brilliant <echo bTEzMjUzQGhvdG1haWwuY29tCg== | base64 -d>
|
|
_watch=('https://www.realvnc.com/en/connect/download/vnc/linux/' 'VNC-Server-(\d[\d.]*\d+)-Linux-x64\.deb')
|
|
|
|
pkgname=realvnc-vnc-server
|
|
pkgver=7.15.0
|
|
pkgrel=1
|
|
pkgdesc='VNC remote desktop server software by RealVNC'
|
|
arch=('x86_64' 'armv7h' 'aarch64')
|
|
url='https://www.realvnc.com/'
|
|
license=('custom')
|
|
depends=('libsm' 'libxtst' 'xorg-xauth')
|
|
optdepends=('cups: Printer support')
|
|
install='realvnc-vnc-server.install'
|
|
conflicts=('tightvnc' 'tigervnc' 'turbovnc')
|
|
source_x86_64=("https://downloads.realvnc.com/download/file/vnc.files/VNC-Server-${pkgver}-Linux-x64.deb")
|
|
source_armv7h=("https://downloads.realvnc.com/download/file/vnc.files/VNC-Server-${pkgver}-Linux-ARM.deb")
|
|
source_aarch64=("https://downloads.realvnc.com/download/file/vnc.files/VNC-Server-${pkgver}-Linux-ARM64.deb")
|
|
sha256sums_x86_64=('fb0510527b35a67855dae31f310f4069495df14b80b9c45a2a5d4069c3c81522')
|
|
sha256sums_armv7h=('c1f7e4da4595140b2095d24298aecd30589b7e1dcf2e41b204d8b31a6b27c9e1')
|
|
sha256sums_aarch64=('55ff6c2fa24ae5769e0ad846c1e5914445f3f520e8617ad26ea982dd49f8fcd7')
|
|
|
|
package() {
|
|
bsdtar -xv -C "${pkgdir}" -f "${srcdir}/"data.tar.*
|
|
mkdir -p "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
ln -s /usr/share/doc/${pkgname}/copyright "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
}
|