1################################################################################ 2# 3# doom-wad 4# 5################################################################################ 6 7DOOM_WAD_VERSION = 1.9 8DOOM_WAD_SOURCE = doom$(subst .,,$(DOOM_WAD_VERSION))s.zip 9# Official server currently unavailable 10# DOOM_WAD_SITE = ftp://ftp.idsoftware.com/idstuff/doom 11DOOM_WAD_SITE = http://www.jbserver.com/downloads/games/doom/misc/shareware 12 13define DOOM_WAD_EXTRACT_CMDS 14 $(UNZIP) -p $(DOOM_WAD_DL_DIR)/$($(PKG)_SOURCE) 'DOOMS_19.[12]' > \ 15 $(@D)/doom-$(DOOM_WAD_VERSION).zip 16 $(UNZIP) -d $(@D) $(@D)/doom-$(DOOM_WAD_VERSION).zip DOOM1.WAD 17endef 18 19define DOOM_WAD_INSTALL_TARGET_CMDS 20 $(INSTALL) -m 0644 -D $(@D)/DOOM1.WAD \ 21 $(TARGET_DIR)/usr/share/games/doom/doom1.wad 22endef 23 24$(eval $(generic-package)) 25