26c32cfe43
Also add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
785 B
Makefile
24 lines
785 B
Makefile
################################################################################
|
|
#
|
|
# rdesktop
|
|
#
|
|
################################################################################
|
|
|
|
RDESKTOP_VERSION = 1.8.3
|
|
RDESKTOP_SITE = http://downloads.sourceforge.net/project/rdesktop/rdesktop/$(RDESKTOP_VERSION)
|
|
RDESKTOP_DEPENDENCIES = host-pkgconf openssl xlib_libX11 xlib_libXt \
|
|
$(if $(BR2_PACKAGE_ALSA_LIB_PCM),alsa-lib) \
|
|
$(if $(BR2_PACKAGE_LIBAO),libao) \
|
|
$(if $(BR2_PACKAGE_LIBSAMPLERATE),libsamplerate)
|
|
RDESKTOP_CONF_OPTS = --with-openssl=$(STAGING_DIR)/usr --disable-credssp
|
|
RDESKTOP_LICENSE = GPLv3+
|
|
RDESKTOP_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_PCSC_LITE),y)
|
|
RDESKTOP_DEPENDENCIES += pcsc-lite
|
|
else
|
|
RDESKTOP_CONF_OPTS += --disable-smartcard
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|