blob: 38dac06e642486c77b5a739a296b771b2538334f [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001DESCRIPTION = "library for easy implementation of a RDP/VNC server"
2HOMEPAGE = "https://libvnc.github.io"
3SECTION = "libs"
4PRIORITY = "optional"
5LICENSE = "GPLv2"
6LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f"
7
8DEPENDS += "zlib libsdl jpeg libpng gtk+ libgcrypt nettle gnutls gmp"
9
10PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES','systemd','systemd','',d)}"
11PACKAGECONFIG[systemd] = ",,systemd"
12
13RDEPENDS_${PN} += "libpng gtk+ libgcrypt"
14
Brad Bishop316dfdd2018-06-25 12:45:53 -040015inherit distro_features_check autotools binconfig pkgconfig
16
17REQUIRED_DISTRO_FEATURES = "x11"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050018
19SRC_URI = "https://github.com/LibVNC/libvncserver/archive/LibVNCServer-${PV}.tar.gz"
20SRC_URI[md5sum] = "7f06104d5c009813e95142932c4ddb06"
21SRC_URI[sha256sum] = "193d630372722a532136fd25c5326b2ca1a636cbb8bf9bb115ef869c804d2894"
22
23S = "${WORKDIR}/${BPN}-LibVNCServer-${PV}"
24
25TARGET_LDFLAGS += "-lgcrypt"