046c5e2563
set x-includes and x-libraries configure option for cross-compiling. wmctrl can use poisoned paths if these options are not passed to configure script. Fixes: http://autobuild.buildroot.net/results/7e5/7e5cba8a5650a00e10d1a5528f38cb2bf772aee1 Signed-off-by: Romain Naour <romain.naour@gmail.com> Cc: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
19 lines
503 B
Makefile
19 lines
503 B
Makefile
################################################################################
|
|
#
|
|
# wmctrl
|
|
#
|
|
################################################################################
|
|
|
|
WMCTRL_VERSION = 1.07
|
|
WMCTRL_SITE = https://sites.google.com/site/tstyblo/wmctrl
|
|
WMCTRL_LICENSE = GPL-2.0+
|
|
WMCTRL_LICENSE_FILES = COPYING
|
|
|
|
WMCTRL_DEPENDENCIES = libglib2 xlib_libX11 xlib_libXmu
|
|
|
|
WMCTRL_CONF_OPTS = \
|
|
--x-includes=$(STAGING_DIR)/usr/include \
|
|
--x-libraries=$(STAGING_DIR)/usr/lib
|
|
|
|
$(eval $(autotools-package))
|