2174355059
Update hash for license file (update in year:
bcb37439d6
)
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
28 lines
809 B
Makefile
28 lines
809 B
Makefile
################################################################################
|
|
#
|
|
# duktape
|
|
#
|
|
################################################################################
|
|
|
|
DUKTAPE_VERSION = 2.4.0
|
|
DUKTAPE_SITE = $(call github,svaarala,duktape-releases,v$(DUKTAPE_VERSION))
|
|
DUKTAPE_LICENSE = MIT
|
|
DUKTAPE_LICENSE_FILES = LICENSE.txt
|
|
DUKTAPE_INSTALL_STAGING = YES
|
|
|
|
define DUKTAPE_BUILD_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) -f Makefile.sharedlibrary
|
|
endef
|
|
|
|
define DUKTAPE_INSTALL_STAGING_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) -f Makefile.sharedlibrary \
|
|
INSTALL_PREFIX=$(STAGING_DIR)/usr install
|
|
endef
|
|
|
|
define DUKTAPE_INSTALL_TARGET_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) -f Makefile.sharedlibrary \
|
|
INSTALL_PREFIX=$(TARGET_DIR)/usr install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|