mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 18:18:18 +00:00
226 lines
7.8 KiB
Python
226 lines
7.8 KiB
Python
import shutil, os, sys, zipfile
|
|
|
|
#valid_platforms = ["win32", "linux86", "linux86_64", "src"]
|
|
|
|
if len(sys.argv) != 3:
|
|
print("wrong number of arguments")
|
|
print(sys.argv[0], "VERSION PLATFORM")
|
|
sys.exit(-1)
|
|
|
|
name = "DDNet"
|
|
version = sys.argv[1]
|
|
platform = sys.argv[2]
|
|
exe_ext = ""
|
|
use_zip = 0
|
|
use_xz = 1
|
|
use_dmg = 0
|
|
use_bundle = 0
|
|
include_data = True
|
|
include_exe = True
|
|
include_src = False
|
|
|
|
if platform == "src":
|
|
include_data = True
|
|
include_exe = False
|
|
include_src = True
|
|
use_zip = 1
|
|
use_xz = 1
|
|
|
|
#if not platform in valid_platforms:
|
|
# print("not a valid platform")
|
|
# print(valid_platforms)
|
|
# sys.exit(-1)
|
|
|
|
if platform == 'win32' or platform == 'win64':
|
|
exe_ext = ".exe"
|
|
use_zip = 1
|
|
use_xz = 0
|
|
if platform == 'osx':
|
|
use_dmg = 1
|
|
use_xz = 0
|
|
use_bundle = 1
|
|
|
|
def copydir(src, dst, excl=[]):
|
|
for root, dirs, files in os.walk(src, topdown=True):
|
|
if "/." in root or "\\." in root:
|
|
continue
|
|
for name in dirs:
|
|
if name[0] != '.':
|
|
os.mkdir(os.path.join(dst, root, name))
|
|
for name in files:
|
|
if name[0] != '.':
|
|
shutil.copy(os.path.join(root, name), os.path.join(dst, root, name))
|
|
|
|
package = "%s-%s-%s" %(name, version, platform)
|
|
package_dir = package
|
|
|
|
print("cleaning target")
|
|
shutil.rmtree(package_dir, True)
|
|
os.mkdir(package_dir)
|
|
|
|
print("adding files")
|
|
shutil.copy("license.txt", package_dir)
|
|
shutil.copy("storage.cfg", package_dir)
|
|
shutil.copy("autoexec_server.cfg", package_dir)
|
|
|
|
if include_data and not use_bundle:
|
|
os.mkdir(os.path.join(package_dir, "data"))
|
|
copydir("data", package_dir)
|
|
if platform[:3] == "win":
|
|
shutil.copy("other/config_directory.bat", package_dir)
|
|
shutil.copy("SDL2.dll", package_dir)
|
|
shutil.copy("freetype.dll", package_dir)
|
|
if platform == "win32":
|
|
shutil.copy("libgcc_s_sjlj-1.dll", package_dir)
|
|
shutil.copy("libidn-11.dll", package_dir)
|
|
elif platform == "win64":
|
|
shutil.copy("libgcc_s_seh-1.dll", package_dir)
|
|
shutil.copy("libwinpthread-1.dll", package_dir)
|
|
shutil.copy("libogg-0.dll", package_dir)
|
|
shutil.copy("libopus-0.dll", package_dir)
|
|
shutil.copy("libopusfile-0.dll", package_dir)
|
|
#shutil.copy("libmysql.dll", package_dir)
|
|
#shutil.copy("mysqlcppconn.dll", package_dir)
|
|
shutil.copy("libcurl.dll", package_dir)
|
|
shutil.copy("libeay32.dll", package_dir)
|
|
shutil.copy("ssleay32.dll", package_dir)
|
|
shutil.copy("zlib1.dll", package_dir)
|
|
|
|
if include_exe and not use_bundle:
|
|
shutil.copy(name+exe_ext, package_dir)
|
|
shutil.copy(name+"-Server"+exe_ext, package_dir)
|
|
shutil.copy("dilate"+exe_ext, package_dir)
|
|
shutil.copy("config_store"+exe_ext, package_dir)
|
|
shutil.copy("config_retrieve"+exe_ext, package_dir)
|
|
#shutil.copy(name+"-Server_sql"+exe_ext, package_dir)
|
|
|
|
if include_src:
|
|
for p in ["src", "scripts", "datasrc", "other", "objs"]:
|
|
os.mkdir(os.path.join(package_dir, p))
|
|
copydir(p, package_dir)
|
|
shutil.copy("bam.lua", package_dir)
|
|
shutil.copy("configure.lua", package_dir)
|
|
|
|
if use_bundle:
|
|
bins = [name, name+'-Server', 'dilate', 'config_store', 'config_retrieve', 'serverlaunch']
|
|
platforms = ('x86', 'x86_64', 'ppc')
|
|
for bin in bins:
|
|
to_lipo = []
|
|
for p in platforms:
|
|
fname = bin+'_'+p
|
|
if os.path.isfile(fname):
|
|
to_lipo.append(fname)
|
|
if to_lipo:
|
|
os.system("lipo -create -output "+bin+" "+" ".join(to_lipo))
|
|
|
|
# create Teeworlds appfolder
|
|
clientbundle_content_dir = os.path.join(package_dir, "DDNet.app/Contents")
|
|
clientbundle_bin_dir = os.path.join(clientbundle_content_dir, "MacOS")
|
|
clientbundle_resource_dir = os.path.join(clientbundle_content_dir, "Resources")
|
|
clientbundle_framework_dir = os.path.join(clientbundle_content_dir, "Frameworks")
|
|
binary_path = clientbundle_bin_dir + "/" + name+exe_ext
|
|
os.mkdir(os.path.join(package_dir, "DDNet.app"))
|
|
os.mkdir(clientbundle_content_dir)
|
|
os.mkdir(clientbundle_bin_dir)
|
|
os.mkdir(clientbundle_resource_dir)
|
|
os.mkdir(clientbundle_framework_dir)
|
|
os.mkdir(os.path.join(clientbundle_resource_dir, "data"))
|
|
copydir("data", clientbundle_resource_dir)
|
|
|
|
|
|
shutil.copy("other/icons/DDNet.icns", clientbundle_resource_dir)
|
|
#shutil.copy("other/icons/Teeworlds.icns", clientbundle_resource_dir)
|
|
shutil.copy(name+exe_ext, clientbundle_bin_dir)
|
|
os.system("install_name_tool -change /opt/X11/lib/libfreetype.6.dylib @executable_path/../Frameworks/libfreetype.6.dylib " + binary_path)
|
|
os.system("install_name_tool -change /Library/Frameworks/SDL.framework/SDL @executable_path/../Frameworks/SDL.framework/SDL " + binary_path)
|
|
os.system("cp -R /Library/Frameworks/SDL.framework " + clientbundle_framework_dir)
|
|
os.system("cp /opt/X11/lib/libfreetype.6.dylib " + clientbundle_framework_dir)
|
|
file(os.path.join(clientbundle_content_dir, "Info.plist"), "w").write("""
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>English</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>DDNet</string>
|
|
<key>CFBundleIconFile</key>
|
|
<string>DDNet</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleSignature</key>
|
|
<string>????</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>%s</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>org.DDNetClient.app</string>
|
|
</dict>
|
|
</plist>
|
|
""" % (version))
|
|
file(os.path.join(clientbundle_content_dir, "PkgInfo"), "w").write("APPL????")
|
|
|
|
# create Teeworlds Server appfolder
|
|
serverbundle_content_dir = os.path.join(package_dir, "DDNet-Server.app/Contents")
|
|
serverbundle_bin_dir = os.path.join(serverbundle_content_dir, "MacOS")
|
|
serverbundle_resource_dir = os.path.join(serverbundle_content_dir, "Resources")
|
|
os.mkdir(os.path.join(package_dir, "DDNet-Server.app"))
|
|
os.mkdir(serverbundle_content_dir)
|
|
os.mkdir(serverbundle_bin_dir)
|
|
os.mkdir(serverbundle_resource_dir)
|
|
os.mkdir(os.path.join(serverbundle_resource_dir, "data"))
|
|
os.mkdir(os.path.join(serverbundle_resource_dir, "data/maps"))
|
|
os.mkdir(os.path.join(serverbundle_resource_dir, "data/mapres"))
|
|
copydir("data/maps", serverbundle_resource_dir)
|
|
shutil.copy("other/icons/DDNet-Server.icns", serverbundle_resource_dir)
|
|
shutil.copy(name+"-Server"+exe_ext, serverbundle_bin_dir)
|
|
shutil.copy("serverlaunch"+exe_ext, serverbundle_bin_dir + "/"+name+"_server")
|
|
file(os.path.join(serverbundle_content_dir, "Info.plist"), "w").write("""
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>English</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>DDNet_server</string>
|
|
<key>CFBundleIconFile</key>
|
|
<string>DDNet-Server</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleSignature</key>
|
|
<string>????</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>%s</string>
|
|
</dict>
|
|
</plist>
|
|
""" % (version))
|
|
file(os.path.join(serverbundle_content_dir, "PkgInfo"), "w").write("APPL????")
|
|
|
|
if use_zip:
|
|
print("making zip archive")
|
|
zf = zipfile.ZipFile("%s.zip" % package, 'w', zipfile.ZIP_DEFLATED)
|
|
|
|
for root, dirs, files in os.walk(package_dir, topdown=True):
|
|
for name in files:
|
|
n = os.path.join(root, name)
|
|
zf.write(n, n)
|
|
#zf.printdir()
|
|
zf.close()
|
|
|
|
if use_xz:
|
|
print("making tar.xz archive")
|
|
os.system("XZ_OPT=-9 tar cJf %s.tar.xz %s" % (package, package_dir))
|
|
|
|
if use_dmg:
|
|
print("making disk image")
|
|
os.system("rm -f %s.dmg %s_temp.dmg" % (package, package))
|
|
os.system("hdiutil create -srcfolder %s -volname DDNet -quiet %s_temp" % (package_dir, package))
|
|
os.system("hdiutil convert %s_temp.dmg -format UDBZ -o %s.dmg -quiet" % (package, package))
|
|
os.system("rm -f %s_temp.dmg" % package)
|
|
|
|
print("done")
|