kumquat-buildroot/package/xdotool/xdotool.mk
Erico Nunes feca4c8c5a xdotool: new package
xdotool is a command-line X11 automation tool.

http://www.semicomplete.com/projects/xdotool

[Thomas:
 - fix <pkg>_LICENSE, as noticed by Baruch
 - use $(TARGET_MAKE_ENV).]

Signed-off-by: Erico Nunes <nunes.erico@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-12-29 16:00:45 +01:00

25 lines
803 B
Makefile

################################################################################
#
# xdotool
#
################################################################################
XDOTOOL_VERSION = v3.20150503.1
XDOTOOL_SITE = $(call github,jordansissel,xdotool,$(XDOTOOL_VERSION))
XDOTOOL_LICENSE = BSD-3c
XDOTOOL_LICENSE_FILES = COPYRIGHT
XDOTOOL_DEPENDENCIES = xlib_libXtst xlib_libXinerama libxkbcommon xlib_libX11
define XDOTOOL_BUILD_CMDS
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
endef
# Avoid 'install' target to skip 'post-install' which runs ldconfig on host
define XDOTOOL_INSTALL_TARGET_CMDS
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
pre-install installlib installprog installheader \
PREFIX="$(TARGET_DIR)/usr"
endef
$(eval $(generic-package))