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>
23 lines
696 B
Makefile
23 lines
696 B
Makefile
################################################################################
|
|
#
|
|
# blackbox
|
|
#
|
|
################################################################################
|
|
|
|
BLACKBOX_VERSION = 0.70.1
|
|
BLACKBOX_SOURCE = blackbox-$(BLACKBOX_VERSION).tar.bz2
|
|
BLACKBOX_SITE = http://downloads.sourceforge.net/project/blackboxwm/blackboxwm/Blackbox%20$(BLACKBOX_VERSION)
|
|
BLACKBOX_CONF_OPTS = --x-includes=$(STAGING_DIR)/usr/include/X11 \
|
|
--x-libraries=$(STAGING_DIR)/usr/lib
|
|
BLACKBOX_DEPENDENCIES = xlib_libX11
|
|
BLACKBOX_LICENSE = MIT
|
|
BLACKBOX_LICENSE_FILES = LICENSE
|
|
|
|
ifneq ($(BR2_ENABLE_LOCALE),y)
|
|
BLACKBOX_DEPENDENCIES += libiconv
|
|
endif
|
|
|
|
BLACKBOX_AUTORECONF = YES
|
|
|
|
$(eval $(autotools-package))
|