aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
18 lines
621 B
Makefile
18 lines
621 B
Makefile
################################################################################
|
|
#
|
|
# synergy
|
|
#
|
|
################################################################################
|
|
|
|
SYNERGY_VERSION = 1.3.1
|
|
SYNERGY_SITE = http://downloads.sourceforge.net/project/synergy2/Sources/$(SYNERGY_VERSION)
|
|
SYNERGY_AUTORECONF = YES
|
|
SYNERGY_CONF_OPTS = --x-includes=$(STAGING_DIR)/usr/include/X11 \
|
|
--x-libraries=$(STAGING_DIR)/usr/lib
|
|
SYNERGY_DEPENDENCIES = xlib_libXtst \
|
|
$(if $(BR2_PACKAGE_XLIB_LIBXINERAMA),xlib_libXinerama)
|
|
SYNERGY_LICENSE = GPLv2
|
|
SYNERGY_LICENSE_FILES = COPYING
|
|
|
|
$(eval $(autotools-package))
|