Skip to content

Build Instructions

Andrew Conrad edited this page Jun 16, 2018 · 3 revisions

This page has been moved to GitLab

The purpose of this page is to provide more specific steps for installing Asma than what is available on the README.

Note that lines beginning with $ indicate that the command should be run as a normal user and lines beginning with # should be run as root.

Table of Contents

Arch Linux

Arch users can use the AUR package, asma-git.

You may use your favorite AUR helper, or do the following:

# pacman -S gtk3 meson git steam
$ git clone https://aur.archlinux.org/asma-git.git
$ cd asma-git
$ makepkg
# pacman -U asma-git*.pkg.tar.xz

To update:

$ cd asma-git
$ rm asma-git*.pkg.tar.xz
$ git pull
$ makepkg
# pacman -U asma-git*.pkg.tar.xz

Ubuntu

First get the dependencies:

$ sudo apt-get install git libgtk-3-dev meson steam

Then continue with the standard installation:

$ git clone https://gitlab.com/her0/asma.git
$ cd asma
$ meson builddir
$ cd builddir
$ ninja
$ sudo ninja install

To update:

$ cd asma
$ git pull
$ cd builddir
$ ninja
$ sudo ninja install

Clone this wiki locally