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>
34 lines
915 B
Makefile
34 lines
915 B
Makefile
################################################################################
|
|
#
|
|
# urg
|
|
#
|
|
################################################################################
|
|
|
|
URG_VERSION = 0.8.18
|
|
URG_SITE = http://www.hokuyo-aut.jp/02sensor/07scanner/download/urg_programs_en
|
|
URG_SOURCE = urg-$(URG_VERSION).zip
|
|
URG_LICENSE = LGPLv3
|
|
URG_LICENSE_FILES = COPYING
|
|
|
|
URG_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_SDL)$(BR2_PACKAGE_SDL_NET),yy)
|
|
URG_DEPENDENCIES += sdl sdl_net
|
|
URG_CONF_OPTS += --with-sdl-prefix=$(STAGING_DIR)/usr \
|
|
--with-sdl-exec-prefix=$(STAGING_DIR)/usr
|
|
else
|
|
URG_CONF_OPTS = --without-sdl
|
|
URG_CONF_ENV += ac_cv_path_SDL_CONFIG=""
|
|
endif
|
|
|
|
URG_CONFIG_SCRIPTS = c_urg-config urg-config
|
|
|
|
define URG_EXTRACT_CMDS
|
|
$(RM) -rf $(URG_DIR)
|
|
unzip -q -d $(BUILD_DIR)/ $(DL_DIR)/$(URG_SOURCE)
|
|
test -d $(URG_DIR) || \
|
|
mv $(BUILD_DIR)/$(subst .zip,,$(URG_SOURCE)) $(URG_DIR)
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|