From 51a8aa03d555926ee38bc55ca4d2230eb969b32c Mon Sep 17 00:00:00 2001 From: Drew Short Date: Sun, 19 Jul 2020 20:46:12 -0500 Subject: [PATCH] Added simple app build scripts --- .gitignore | 4 ++++ resources/mac/info.plist | 23 +++++++++++++++++++++++ scripts/_variables.sh | 4 ++++ scripts/build_mac_app.sh | 24 ++++++++++++++++++++++++ scripts/clean.sh | 2 +- scripts/nuitka_build.sh | 2 -- 6 files changed, 56 insertions(+), 3 deletions(-) create mode 100644 resources/mac/info.plist create mode 100755 scripts/build_mac_app.sh diff --git a/.gitignore b/.gitignore index 3696a62..55470ab 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,6 @@ # Nuitka Build directories renku.*/ +# Distributables Directory +dists/ +# MacOS Files +.DS_Store diff --git a/resources/mac/info.plist b/resources/mac/info.plist new file mode 100644 index 0000000..46b655e --- /dev/null +++ b/resources/mac/info.plist @@ -0,0 +1,23 @@ + + + + + CFBundleDisplayName + Renku + CFBundleExecutable + MacOS/renku + CFBundleIconFile + icon.icns + CFBundleIdentifier + renku + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + renku + CFBundlePackageType + APPL + CFBundleShortVersionString + 0.0.0 + NSHighResolutionCapable + True + diff --git a/scripts/_variables.sh b/scripts/_variables.sh index d6f0da9..34902be 100644 --- a/scripts/_variables.sh +++ b/scripts/_variables.sh @@ -1,7 +1,11 @@ +# Application Name +NAME="Renku" # Application entrypoint MAIN_ENTRYPOINT="app/renku.py" # Application build directory. Typically