buildrootschalter/package/cgilua/cgilua.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

21 lines
522 B
Makefile

#############################################################
#
# cgilua
#
#############################################################
CGILUA_VERSION = 5.1.3
CGILUA_SITE = http://luaforge.net/frs/download.php/3970
CGILUA_DEPENDENCIES = luafilesystem
define CGILUA_INSTALL_TARGET_CMDS
$(MAKE) -C $(@D) install LUA_DIR="$(TARGET_DIR)/usr/share/lua"
endef
define CGILUA_UNINSTALL_TARGET_CMDS
rm -rf "$(TARGET_DIR)/usr/share/lua/cgilua"
rm -f "$(TARGET_DIR)/usr/share/lua/cgilua.lua"
endef
$(eval $(call GENTARGETS))