mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-19 06:28:19 +00:00
b0725775e8
This allows us to update the repository without breaking old builds.
58 lines
1.5 KiB
Python
58 lines
1.5 KiB
Python
import shutil, os, re, sys, zipfile
|
|
from distutils.dir_util import copy_tree
|
|
os.chdir(os.path.dirname(os.path.realpath(sys.argv[0])) + "/..")
|
|
import twlib
|
|
|
|
def unzip(filename, where):
|
|
try:
|
|
z = zipfile.ZipFile(filename, "r")
|
|
except:
|
|
return False
|
|
|
|
# remove extraction folder, if it exists
|
|
if os.path.exists(z.namelist()[0]):
|
|
shutil.rmtree(z.namelist()[0])
|
|
|
|
# extract files
|
|
for name in z.namelist():
|
|
z.extract(name, where)
|
|
z.close()
|
|
return z.namelist()[0]
|
|
|
|
def downloadAll(targets):
|
|
version = "4bf6dbc8c9f9b2fa89b2b5be1928f5e85bca01e6"
|
|
url = "https://github.com/teeworlds/teeworlds-libs/archive/{}.zip".format(version)
|
|
|
|
# download and unzip
|
|
src_package_libs = twlib.fetch_file(url)
|
|
if not src_package_libs:
|
|
print("couldn't download libs")
|
|
sys.exit(-1)
|
|
libs_dir = unzip(src_package_libs, ".")
|
|
if not libs_dir:
|
|
print("couldn't unzip libs")
|
|
sys.exit(-1)
|
|
libs_dir = "teeworlds-libs-{}".format(version)
|
|
|
|
if "sdl" in targets:
|
|
copy_tree(libs_dir + "/sdl/", "other/sdl/")
|
|
if "freetype" in targets:
|
|
copy_tree(libs_dir + "/freetype/", "other/freetype/")
|
|
|
|
# cleanup
|
|
try:
|
|
shutil.rmtree(libs_dir)
|
|
os.remove(src_package_libs)
|
|
except: pass
|
|
|
|
def main():
|
|
import argparse
|
|
p = argparse.ArgumentParser(description="Download freetype and SDL library and header files for Windows.")
|
|
p.add_argument("targets", metavar="TARGET", nargs='+', choices=["sdl", "freetype"], help='Target to download. Valid choices are "sdl" and "freetype"')
|
|
args = p.parse_args()
|
|
|
|
downloadAll(args.targets)
|
|
|
|
if __name__ == '__main__':
|
|
main()
|