efce5be9af
Not needed anymore as stripping is handled on a global level. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
23 lines
625 B
Makefile
23 lines
625 B
Makefile
#############################################################
|
|
#
|
|
# haserl
|
|
#
|
|
#############################################################
|
|
|
|
HASERL_VERSION = $(call qstrip,$(BR2_PACKAGE_HASERL_VERSION))
|
|
HASERL_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/haserl/
|
|
|
|
ifeq ($(BR2_PACKAGE_HASERL_WITH_LUA),y)
|
|
HASERL_CONF_OPT += --with-lua=$(STAGING_DIR) \
|
|
--with-lua-headers=$(STAGING_DIR)
|
|
HASERL_DEPENDENCIES += lua
|
|
endif
|
|
|
|
define HASERL_REMOVE_EXAMPLES
|
|
rm -rf $(TARGET_DIR)/usr/share/haserl
|
|
endef
|
|
|
|
HASERL_POST_INSTALL_TARGET_HOOKS += HASERL_REMOVE_EXAMPLES
|
|
|
|
$(eval $(call AUTOTARGETS,package,haserl))
|