summaryrefslogtreecommitdiff
path: root/package/wsapi/wsapi.mk
blob: f5423f314f3874cc865af9341e8ca3476fe438af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#############################################################
#
# 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))