prepare_resources-mac.py (1751B)
1 #!/usr/bin/env python3 2 3 # this script will copy the project's resources (pngs, ttfs, svgs etc) to the correct place 4 # depending on the value of PLUG_SHARED_RESOURCES in config.h 5 # resources can either be copied into the plug-in bundle or into a shared path 6 # since the shared path should be accesible from the mac app sandbox, 7 # the path used is ~/Music/SHARED_RESOURCES_SUBPATH 8 9 import os, sys, shutil 10 11 scriptpath = os.path.dirname(os.path.realpath(__file__)) 12 projectpath = os.path.abspath(os.path.join(scriptpath, os.pardir)) 13 14 IPLUG2_ROOT = "../../iPlug2" 15 16 sys.path.insert(0, os.path.join(os.getcwd(), IPLUG2_ROOT + "/Scripts")) 17 18 from parse_config import parse_config 19 20 21 def main(): 22 config = parse_config(projectpath) 23 24 print("Copying resources ...") 25 26 if config["PLUG_SHARED_RESOURCES"]: 27 dst = ( 28 os.path.expanduser("~") 29 + "/Music/" 30 + config["SHARED_RESOURCES_SUBPATH"] 31 + "/Resources" 32 ) 33 else: 34 dst = ( 35 os.environ["TARGET_BUILD_DIR"] 36 + os.environ["UNLOCALIZED_RESOURCES_FOLDER_PATH"] 37 ) 38 39 if os.path.exists(dst) == False: 40 os.makedirs(dst + "/", 0o0755) 41 42 if os.path.exists(projectpath + "/resources/img/"): 43 imgs = os.listdir(projectpath + "/resources/img/") 44 for img in imgs: 45 print("copying " + img + " to " + dst) 46 shutil.copy(projectpath + "/resources/img/" + img, dst) 47 48 if os.path.exists(projectpath + "/resources/fonts/"): 49 fonts = os.listdir(projectpath + "/resources/fonts/") 50 for font in fonts: 51 print("copying " + font + " to " + dst) 52 shutil.copy(projectpath + "/resources/fonts/" + font, dst) 53 54 55 if __name__ == "__main__": 56 main()