e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
25 lines
614 B
Makefile
25 lines
614 B
Makefile
#############################################################
|
|
#
|
|
# doom-wad
|
|
#
|
|
#############################################################
|
|
|
|
DOOM_WAD_VERSION = 1.8
|
|
DOOM_WAD_SOURCE = doom-$(DOOM_WAD_VERSION).wad.gz
|
|
DOOM_WAD_SITE = ftp://ftp.idsoftware.com/idstuff/doom/
|
|
|
|
define DOOM_WAD_EXTRACT_CMDS
|
|
$(ZCAT) $(DL_DIR)/$($(PKG)_SOURCE) > $(@D)/doom1.wad
|
|
endef
|
|
|
|
define DOOM_WAD_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0644 -D $(@D)/doom1.wad \
|
|
$(TARGET_DIR)/usr/share/games/doom/doom1.wad
|
|
endef
|
|
|
|
define DOOM_WAD_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/usr/share/games/doom/doom1.wad
|
|
endef
|
|
|
|
$(eval $(generic-package))
|