mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-04 06:10:16 +03:00
Instead of DL_DIR, the package should now use $(PKG)_DL_DIR to ease the
transition into a new directory structure for DL_DIR.
This commit has been generated with the following scripts:
for i in $(find . -iname "*.mk"); do
if ! grep -q "\$(DL_DIR)" ${i}; then
continue
fi
pkg_name="$(basename $(dirname ${i}))"
[ "${pkg_name}" = "package" ] && continue
raw_pkg_name=$(echo ${pkg_name} | tr [a-z] [A-Z] | tr '-' '_')
pkg_dl_dir="${raw_pkg_name}_DL_DIR"
sed -i "s/\$(DL_DIR)/\$($pkg_dl_dir)/" ${i}
done
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
25 lines
797 B
Makefile
25 lines
797 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 $(DOOM_WAD_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))
|