-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
qsc: Add Linux support #2
base: master
Are you sure you want to change the base?
Conversation
@@ -0,0 +1,29 @@ | |||
#!/bin/bash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this have execute permissions set?
|
||
zip_path = os.path.join("archives", name+".zip") | ||
tar_path = os.path.join("archives", name+".tar.xz") | ||
|
||
print("Extracting...", end="", flush=True) | ||
|
||
if qsc.USE_CACHE and os.path.isdir(name): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When extracted the directory within the archive is still qt-everywhere-src
not qt-everywhere-opensource-src
.
if qsc.USE_CACHE and os.path.isdir(name): | |
if qsc.USE_CACHE and os.path.isdir("qt-everywhere-src-{}".format(release)): |
Part of my efforts to get Dolphin running under the Steam Runtime. I used this tool to create a set of Qt 5 shared libraries.
Instead of downloading the zip, I changed it to download the tar.xz so that Unix permissions like +x stay intact (versus the zip which strips those). I think this should be fine on Windows too.