freedoom/scripts/makepkgs

50 lines
1.0 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env python3
# SPDX-License-Identifier: BSD-3-Clause
2006-05-09 09:20:42 -07:00
2008-12-24 10:33:31 -08:00
import os
import sys
# Documentation files included with distributions.
2006-05-09 09:20:42 -07:00
GAME_NAME = sys.argv[1]
FILES = sys.argv[2:]
2006-05-09 09:20:42 -07:00
2008-12-24 10:33:31 -08:00
# Run a command, displaying it before executing it.
2006-05-09 09:20:42 -07:00
2008-12-24 10:33:31 -08:00
def run_command(command):
print("> " + command)
os.system(command)
2006-05-09 09:20:42 -07:00
2008-12-24 10:33:31 -08:00
# Find the version to build:
2006-05-09 09:20:42 -07:00
2008-12-24 10:33:31 -08:00
version = os.getenv("VERSION")
2006-05-09 09:20:42 -07:00
2008-12-24 10:33:31 -08:00
if version is None:
sys.stderr.write("Version not specified for release\n")
sys.exit(1)
if version[0] is "v":
# Strip the leading "v" from versioning
version = version[1:]
2008-12-24 10:33:31 -08:00
path = os.path.dirname(FILES[0])
basename = os.path.basename(FILES[0])
2008-12-24 10:33:31 -08:00
base_dir = GAME_NAME + "-" + version
full_path = path + "/" + base_dir
2008-12-24 10:33:31 -08:00
# Create directory and add files
2008-12-24 10:33:31 -08:00
run_command("mkdir {}".format(full_path))
for file in FILES:
run_command("cp {} {}".format(file, full_path))
2008-12-24 10:33:31 -08:00
orig_dir = os.getcwd()
2006-05-09 09:20:42 -07:00
os.chdir(path)
run_command("rm -f {}.zip".format(base_dir))
run_command("zip -X {0}.zip {0} {0}/*".format(base_dir))
run_command("rm -rf {}".format(base_dir))
os.chdir(orig_dir)