Commit 8b82f899 authored by Rodrigo Rebello's avatar Rodrigo Rebello Committed by Thomas Petazzoni
Browse files

doom-wad: bump to version 1.9



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: default avatarRodrigo Rebello <rprebello@gmail.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 8c6bf508
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
# Locally computed
sha256	cacf0142b31ca1af00796b4a0339e07992ac5f21bc3f81e7532fe1b5e1b486e6	doom19s.zip
+9 −5
Original line number Diff line number Diff line
@@ -4,16 +4,20 @@
#
################################################################################

DOOM_WAD_VERSION = 1.8
DOOM_WAD_SOURCE = doom-$(DOOM_WAD_VERSION).wad.gz
DOOM_WAD_SITE = ftp://ftp.idsoftware.com/idstuff/doom
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
	$(ZCAT) $(DL_DIR)/$($(PKG)_SOURCE) > $(@D)/doom1.wad
	$(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 \
	$(INSTALL) -m 0644 -D $(@D)/DOOM1.WAD \
		$(TARGET_DIR)/usr/share/games/doom/doom1.wad
endef