Date: Sunday, December 25, 2022 @ 17:58:33
Author: felixonmars
Revision: 464822
archrelease: copy trunk to testing-x86_64
Added:
libvncserver/repos/testing-x86_64/
libvncserver/repos/testing-x86_64/PKGBUILD
(from rev 464821, libvncserver/trunk/PKGBUILD)
----------+
PKGBUILD | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
Copied: libvncserver/repos/testing-x86_64/PKGBUILD (from rev 464821,
libvncserver/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-12-25 17:58:33 UTC (rev 464822)
@@ -0,0 +1,26 @@
+# Maintainer: Felix Yan <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+# Contributor: Tobias Powalowski <[email protected]>
+
+pkgname=libvncserver
+pkgver=0.9.14
+pkgrel=1
+pkgdesc="Cross-platform C libraries that allow you to easily implement VNC
server or client functionality"
+arch=('x86_64')
+url="https://libvnc.github.io/"
+license=('GPL')
+depends=('libpng' 'libjpeg' 'gnutls' 'libgcrypt' 'openssl' 'libnsl')
+makedepends=('sdl2' 'cmake')
+source=("https://github.com/LibVNC/libvncserver/archive/LibVNCServer-${pkgver}.tar.gz")
+sha256sums=('83104e4f7e28b02f8bf6b010d69b626fae591f887e949816305daebae527c9a5')
+
+build() {
+ cd $pkgname-LibVNCServer-$pkgver
+ cmake -DCMAKE_INSTALL_PREFIX=/usr .
+ make
+}
+
+package() {
+ cd $pkgname-LibVNCServer-$pkgver
+ make DESTDIR="$pkgdir" install
+}