eb7bd9ef61
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
18 lines
471 B
Makefile
18 lines
471 B
Makefile
################################################################################
|
|
#
|
|
# wsapi
|
|
#
|
|
################################################################################
|
|
|
|
WSAPI_VERSION = 1.5
|
|
WSAPI_SITE = http://github.com/downloads/keplerproject/wsapi
|
|
WSAPI_LICENSE = MIT
|
|
|
|
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
|
|
|
|
$(eval $(generic-package))
|