0849e8193e
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>
21 lines
512 B
Makefile
21 lines
512 B
Makefile
#############################################################
|
|
#
|
|
# copas
|
|
#
|
|
#############################################################
|
|
|
|
COPAS_VERSION = 1.1.6
|
|
COPAS_SITE = http://github.com/downloads/keplerproject/copas
|
|
COPAS_DEPENDENCIES = lua coxpcall luasocket
|
|
|
|
define COPAS_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0644 -D $(@D)/src/copas/copas.lua \
|
|
$(TARGET_DIR)/usr/share/lua/copas.lua
|
|
endef
|
|
|
|
define COPAS_UNINSTALL_TARGET_CMDS
|
|
rm -f "$(TARGET_DIR)/usr/share/lua/copas.lua"
|
|
endef
|
|
|
|
$(eval $(call GENTARGETS))
|