BuildingOnLinux.wiki
changeset 798 30c5f1ebd552
parent 686 9971f0387cd3
child 878 d0a0d8167895
equal deleted inserted replaced
797:ffa20ab0669b 798:30c5f1ebd552
     6 
     6 
     7 This page contains both generic and copy-and-paste instructions for a Hedgewars development build.
     7 This page contains both generic and copy-and-paste instructions for a Hedgewars development build.
     8 
     8 
     9 It has a partial focus on Debian, but this guide attempts to include generic information as well.
     9 It has a partial focus on Debian, but this guide attempts to include generic information as well.
    10 
    10 
    11 Also, see http://hedgewars.org/download.html if you are just looking to play latest stable—there’s a good chance it exists for your distribution.
    11 Also, see https://hedgewars.org/download.html if you are just looking to play latest stable—there’s a good chance it exists for your distribution.
    12 
    12 
    13 == Prerequisites ==
    13 == Prerequisites ==
    14 The first section contains dependency lists, the second section contain copy-and-paste instructions for Debian and derivatives (Ubuntu, Linux Mint, etc.).
    14 The first section contains dependency lists, the second section contain copy-and-paste instructions for Debian and derivatives (Ubuntu, Linux Mint, etc.).
    15 
    15 
    16 === Required packages ===
    16 === Required packages ===
    41 
    41 
    42 == Fetching the source code ==
    42 == Fetching the source code ==
    43 
    43 
    44 Below you find instructions for downloading the Hedgewars source code from the development repository.
    44 Below you find instructions for downloading the Hedgewars source code from the development repository.
    45 
    45 
    46 If you have already downloaded and unpacked the source code version of your choice (e.g. the source tarball from the  [http://hedgewars.org/download.html download page]), just {{{cd}}} to your copy of the Hedgewars source in a terminal and go straight to the building section further below.
    46 If you have already downloaded and unpacked the source code version of your choice (e.g. the source tarball from the  [https://hedgewars.org/download.html download page]), just {{{cd}}} to your copy of the Hedgewars source in a terminal and go straight to the building section further below.
    47 ----
    47 ----
    48 
    48 
    49 {{{
    49 {{{
    50 mkdir -p ~/games ~/hg/hedgewars/
    50 mkdir -p ~/games ~/hg/hedgewars/
    51 cd ~/hg/hedgewars
    51 cd ~/hg/hedgewars
    52 hg clone -v http://hg.hedgewars.org/hedgewars/ trunk
    52 hg clone -v https://hg.hedgewars.org/hedgewars/ trunk
    53 }}}
    53 }}}
    54 
    54 
    55 The initial clone of the repository will take a while, is about 628 MiB or so, due to all the multimedia revisions.
    55 The initial clone of the repository will take a while, is about 628 MiB or so, due to all the multimedia revisions.
    56 After that switch to the trunk folder:
    56 After that switch to the trunk folder:
    57 
    57