e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
549 B
Makefile
22 lines
549 B
Makefile
#############################################################
|
|
#
|
|
# wsapi
|
|
#
|
|
#############################################################
|
|
|
|
WSAPI_VERSION = 1.5
|
|
WSAPI_SITE = http://github.com/downloads/keplerproject/wsapi
|
|
WSAPI_DEPENDENCIES = coxpcall luafilesystem rings
|
|
|
|
define WSAPI_INSTALL_TARGET_CMDS
|
|
mkdir -p $(TARGET_DIR)/usr/share/lua/wsapi
|
|
$(INSTALL) -m 0644 -D $(@D)/src/wsapi/*.lua \
|
|
$(TARGET_DIR)/usr/share/lua/wsapi
|
|
endef
|
|
|
|
define WSAPI_UNINSTALL_TARGET_CMDS
|
|
rm -rf "$(TARGET_DIR)/usr/share/lua/wsapi"
|
|
endef
|
|
|
|
$(eval $(generic-package))
|