89bc5e0f2a
- Retrieve official tarball and so remove autoreconf - xlib_Xcursor is a mandatory dependency since6dd85edc6f
- libtasn1 is a mandatory dependency since673b267e66
- nettle is a mandatory dependency since00d9e0c4c8
- gnutls is a mandatory dependency instead of openssl since166d1bc14d
- pulseaudio is an optional dependency since9b98c3b229
- iconv is mandatory since2ea3f69873
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
35 lines
947 B
Makefile
35 lines
947 B
Makefile
################################################################################
|
|
#
|
|
# rdesktop
|
|
#
|
|
################################################################################
|
|
|
|
RDESKTOP_VERSION = 1.9.0
|
|
RDESKTOP_SITE = \
|
|
https://github.com/rdesktop/rdesktop/releases/download/v$(RDESKTOP_VERSION)
|
|
RDESKTOP_DEPENDENCIES = \
|
|
host-pkgconf \
|
|
gnutls \
|
|
libtasn1 \
|
|
nettle \
|
|
xlib_libX11 \
|
|
xlib_libXcursor \
|
|
xlib_libXt \
|
|
$(if $(BR2_PACKAGE_ALSA_LIB_PCM),alsa-lib) \
|
|
$(if $(BR2_PACKAGE_LIBAO),libao) \
|
|
$(if $(BR2_PACKAGE_LIBICONV),libiconv) \
|
|
$(if $(BR2_PACKAGE_LIBSAMPLERATE),libsamplerate) \
|
|
$(if $(BR2_PACKAGE_PULSEAUDIO),pulseaudio) \
|
|
$(if $(BR2_PACKAGE_XLIB_LIBXRANDR),xlib_libXrandr)
|
|
RDESKTOP_CONF_OPTS = --disable-credssp
|
|
RDESKTOP_LICENSE = GPL-3.0+
|
|
RDESKTOP_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_PCSC_LITE),y)
|
|
RDESKTOP_DEPENDENCIES += pcsc-lite
|
|
else
|
|
RDESKTOP_CONF_OPTS += --disable-smartcard
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|