mirror of
https://github.com/overte-org/overte.git
synced 2025-08-05 15:10:31 +02:00
Updated with new Ubuntu zip instructions.
This commit is contained in:
parent
e755e717b1
commit
70531bca52
1 changed files with 17 additions and 5 deletions
|
@ -122,7 +122,7 @@ cd ..\..\qt5-build
|
||||||
|
|
||||||
nmake
|
nmake
|
||||||
nmake install
|
nmake install
|
||||||
|
#### Uploading
|
||||||
Create a tar file called qt5-install.tar from the qt5-install folder (e.g. using 7-zip)
|
Create a tar file called qt5-install.tar from the qt5-install folder (e.g. using 7-zip)
|
||||||
Create a gzip file called qt5-install.tar.gz from qt5-install.tar folder (e.g. using 7-zip)
|
Create a gzip file called qt5-install.tar.gz from qt5-install.tar folder (e.g. using 7-zip)
|
||||||
Upload qt5-install.tar.gz to https://hifi-qa.s3.amazonaws.com/qt5/Windows/
|
Upload qt5-install.tar.gz to https://hifi-qa.s3.amazonaws.com/qt5/Windows/
|
||||||
|
@ -143,9 +143,21 @@ cd qt5-build
|
||||||
|
|
||||||
make
|
make
|
||||||
make install
|
make install
|
||||||
|
#### Uploading
|
||||||
|
1. Return to the home folder
|
||||||
|
`cd ..`
|
||||||
|
|
||||||
tar -zcvf qt5-install.tar.gz qt5-install
|
1. Open a python 3 shell
|
||||||
Upload qt5-install.tar.gz to https://hifi-qa.s3.amazonaws.com/qt5/Ubuntu/
|
`python3`
|
||||||
|
|
||||||
|
1. Run the following snippet:
|
||||||
|
`import os`
|
||||||
|
`import tarfile`
|
||||||
|
`filename=tarfile.open("qt5-install.tar.gz", "w:gz"))`
|
||||||
|
`filename.add("qt5-install", os.path.basename("qt5-install"))`
|
||||||
|
`exit()`
|
||||||
|
|
||||||
|
1. Upload qt5-install.tar.gz to https://hifi-qa.s3.amazonaws.com/qt5/Ubuntu/
|
||||||
### Mac
|
### Mac
|
||||||
git clone --recursive git://code.qt.io/qt/qt5.git -b 5.12.3 --single-branch
|
git clone --recursive git://code.qt.io/qt/qt5.git -b 5.12.3 --single-branch
|
||||||
|
|
||||||
|
@ -163,7 +175,7 @@ cd ../qt5-build
|
||||||
|
|
||||||
make
|
make
|
||||||
make install
|
make install
|
||||||
|
#### Uploading
|
||||||
tar -zcvf qt5-install.tar.gz qt5-install
|
tar -zcvf qt5-install.tar.gz qt5-install
|
||||||
Upload qt5-install.tar.gz to https://hifi-qa.s3.amazonaws.com/qt5/Mac/
|
Upload qt5-install.tar.gz to https://hifi-qa.s3.amazonaws.com/qt5/Mac/
|
||||||
## Problems
|
## Problems
|
||||||
|
|
Loading…
Reference in a new issue