Skip to content
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

Update BUILDING.rst #324

Open
wants to merge 1 commit into
base: DF2016
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
29 changes: 20 additions & 9 deletions BUILDING.rst
Expand Up @@ -49,6 +49,11 @@ Fedora 20+
Building
--------

First of all clone splintermind GitHub repository (green button on the right) by downloading ".zip" file. Unzip it to your desired location and for ease of use navigate to it using the Terminal (example: cd ./Downloaded/DF/). We will assume that you will be installing DT in this newly unziped directory. Also you should type console commands without "" sign- did them for the sake of clarity.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You should be using git instead of downloading the zip file.


Versions of qmake
**********

::

qmake -qt=4 # Qt 4 on Debian-based
Expand All @@ -57,26 +62,32 @@ Building
qmake # Qt 4 on most other distros
make -j$(nproc) # Run as many jobs as processing units

To configure where DT is installed, pass the PREFIX variable, for example:
For instructions on exactly where to find "qmake" and how to invoke it on other distros, consult your distribution's documentation.

::
qmake PREFIX=~/.local
Step 1:
**********

For instructions on exactly where to find qmake and how to invoke it on other distros, consult your distribution's documentation.
To configure where DT will be installed, pass the "PREFIX" variable, for example :

::
qmake -qt=5 PREFIX=~/./Downloaded/DF/

You can stick with unziped directory or choose your own.
This will take 2–10 minutes, depending on CPU.

Step 2:
**********

Get a cup of coffee.

Once your build is complete, run make install. Use sudo if installing into the
default /usr/local directory (i.e, if you didn't pass the PREFIX variable to
qmake)
Once your build is complete, run "make install" or "sudo make install". [Use sudo if you wish to install into the
default /usr/local directory (i.e, if you didn't pass the "PREFIX" variable to
"qmake")]

make install
OR
sudo make install

If you want, you can now remove the folder you cloned from github.

Troubleshooting
---------------

Expand Down