buildrootschalter/package/wsapi/wsapi.mk
Thomas Petazzoni 0849e8193e package: remove useless arguments from GENTARGETS
Thanks to the pkgparentdir and pkgname functions, we can rewrite the
GENTARGETS macro in a way that avoids the need for each package to
repeat its name and the directory in which it is present.

[Peter: pkgdir->pkgparentdir]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-09-29 23:09:58 +02:00

22 lines
551 B
Makefile

#############################################################
#
# wsapi
#
#############################################################
WSAPI_VERSION = 1.3.4
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 $(call GENTARGETS))