8b82f89965
Also add a hash file. The extraction method had to be changed, since the WAD file for this version is not distributed as a stand-alone file, but comes inside a 2-part DOS self-extracting zip archive. Signed-off-by: Rodrigo Rebello <rprebello@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
25 lines
788 B
Makefile
25 lines
788 B
Makefile
################################################################################
|
|
#
|
|
# doom-wad
|
|
#
|
|
################################################################################
|
|
|
|
DOOM_WAD_VERSION = 1.9
|
|
DOOM_WAD_SOURCE = doom$(subst .,,$(DOOM_WAD_VERSION))s.zip
|
|
# Official server currently unavailable
|
|
# DOOM_WAD_SITE = ftp://ftp.idsoftware.com/idstuff/doom
|
|
DOOM_WAD_SITE = http://www.jbserver.com/downloads/games/doom/misc/shareware
|
|
|
|
define DOOM_WAD_EXTRACT_CMDS
|
|
$(UNZIP) -p $(DL_DIR)/$($(PKG)_SOURCE) 'DOOMS_19.[12]' > \
|
|
$(@D)/doom-$(DOOM_WAD_VERSION).zip
|
|
$(UNZIP) -d $(@D) $(@D)/doom-$(DOOM_WAD_VERSION).zip 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
|
|
|
|
$(eval $(generic-package))
|