Changes between Version 61 and Version 62 of BuildAndDeploymentEnvironment


Ignore:
Timestamp:
Aug 31, 2022, 4:32:40 AM (21 months ago)
Author:
Andy Alt
Comment:

appimage creation:Add build instructions

Legend:

Unmodified
Added
Removed
Modified
  • BuildAndDeploymentEnvironment

    v61 v62  
    143143== Linux AppImage ==
    144144
    145 After you've built 0ad, you can use these steps to create an [https://appimage.org/ AppImage]:
    146 
     145You can use these steps to create an [https://appimage.org/ AppImage]:
     146
     147Build 0ad. Using the 0ad distribution archives are recommended.
     148
     149
     150{{{
     151./update-workspaces.sh -j$(nproc) \
     152 && make config=release -C gcc -j$(nproc)
     153}}}
     154
     155Copy the content in the code block below and save it to a text file. READ through the comments before running the script.
    147156
    148157{{{
    149158#!/bin/sh
     159# install.sh
    150160set -ev # exit on error, be verbose
    151161
     
    209219Note that binaries/system{libmoz*,libnv*} will be moved into the AppRun folder automatically when linuxdeploy is run below.
    210220
    211 Change the Exec line in $HOME/AppRun/usr/share/applications/0ad.desktop to pyrogenesis and also change the Exec line for Atlas.
     221Change the Exec line in $HOME/AppRun/usr/share/applications/0ad.desktop to `pyrogenesis` and also change the Exec line for Atlas.
    212222
    213223Get a copy of [https://github.com/linuxdeploy/linuxdeploy/releases linuxdeploy] (you can use `wget` to get the desired release/arch).