Skip to content

Commit c86095e

Browse files
committed
Install instructions for arch linux and desktop shortcup updated
1 parent 59058ec commit c86095e

File tree

3 files changed

+44
-16
lines changed

3 files changed

+44
-16
lines changed

INSTALL.md

+38-10
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ GrSim is written in C++, in order to compile it, you will need a working toolcha
1010

1111
GrSim depends on:
1212

13-
- [CMake](https://cmake.org/) version 3.5+
13+
- [CMake](https://cmake.org/) version 3.5+
1414
- [pkg-config](https://www.freedesktop.org/wiki/Software/pkg-config/)
1515
- [OpenGL](https://www.opengl.org)
1616
- [Qt5 Development Libraries](https://www.qt.io)
@@ -23,13 +23,40 @@ GrSim depends on:
2323

2424
### Linux/Unix Installation
2525

26-
If you run a Debian system, or derivative, first ensure that these dependencies are there:
26+
#### Arch Linux
27+
28+
If you are using Arch Linux or a based Arch Linux distribution like Manjaro, you can install grSim from the [Arch User Repository](https://aur.archlinux.org/packages/grsim-git/) using yay or the AUR helper of your choice. In order to install it with yay, run the follow:
29+
30+
```bash
31+
$ yay -S grsim-git
32+
```
33+
34+
Otherwise, if you want to install it from the source code, install all dependencies, except VarTypes, with:
35+
36+
```bash
37+
$ sudo pacman -S base-devel boost hicolor-icon-theme mesa ode protobuf qt5-base cmake git
38+
```
39+
40+
You can install VarTypes via [AUR](https://aur.archlinux.org/packages/vartypes-qt5-git/) with:
41+
42+
```bash
43+
$ yay -S vartypes-qt5-git
44+
```
45+
46+
or building from source following the steps on the Building section.
47+
48+
#### Debian
49+
50+
If you run a Debian system, or derivative, ensure that these dependencies are there:
2751

2852
```bash
2953
$ sudo apt-get install git build-essential cmake pkg-config qt5-default libqt5opengl5-dev libgl1-mesa-dev libglu1-mesa-dev libprotobuf-dev protobuf-compiler libode-dev libboost-dev
3054
```
3155

32-
Next compile and install VarTypes from source. In the following we install VarTypes from source using `git`.
56+
57+
#### Building
58+
59+
First compile and install VarTypes from source. In the following we install VarTypes from source using `git`.
3360

3461
```bash
3562
$ cd /tmp
@@ -57,19 +84,20 @@ $ mkdir build
5784
$ cd build
5885
```
5986

60-
Run CMake to generate the makefiles:
87+
Run CMake to generate the makefile (note: grSim will be installed into directory chosen, by default `/usr/local`):
6188

6289
```bash
63-
$ cmake ..
90+
$ cmake -DCMAKE_INSTALL_PREFIX=/usr/local ..
6491
```
6592

66-
Then compile the program:
93+
Then compile the program and install it:
6794

6895
```bash
6996
$ make
97+
$ sudo make install
7098
```
7199

72-
The binary is copied to the `../bin` folder after a successful compilation.
100+
grSim will be — by default — installed on the `/usr/local` directory.
73101

74102
### Mac OS X Installation
75103

@@ -84,7 +112,7 @@ First ensure the dependencies are there:
84112
brew install cmake
85113
brew install pkg-config
86114
brew tap robotology/formulae
87-
brew install robotology/formulae/ode
115+
brew install robotology/formulae/ode
88116
brew install qt
89117
brew install protobuf
90118
```
@@ -96,7 +124,7 @@ brew update
96124
brew doctor
97125
```
98126

99-
Next we need to install VarTypes manually. Please refer to the documentation above for the procedure.
127+
Next we need to install VarTypes manually. Please refer to the documentation above for the procedure.
100128

101129
The steps to compile grSim on Mac OS is similar to the steps outlines above for Linux:
102130

@@ -111,7 +139,7 @@ $ cmake ..
111139
$ make
112140
```
113141

114-
The binary files (grSim and the sample client) will be placed in `../bin`.
142+
The binary files (grSim and the sample client) will be placed in `../bin`.
115143

116144
## Notes on the performance
117145

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ Note that it may run on lower end equipment though good performance is not guara
2626
Software Requirements
2727
---------------------
2828

29-
grSim compiles on Linux (tested on Ubuntu variants only) and Mac OS. It depends on the following libraries:
29+
grSim compiles on Linux (tested on Ubuntu and Arch Linux variants only) and Mac OS. It depends on the following libraries:
3030

31-
- [CMake](https://cmake.org/) version 3.5+
31+
- [CMake](https://cmake.org/) version 3.5+
3232
- [pkg-config](https://freedesktop.org/wiki/Software/pkg-config/)
3333
- [OpenGL](https://www.opengl.org)
3434
- [Qt5 Development Libraries](https://www.qt.io)

resources/grsim.desktop

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[Desktop Entry]
22
Type=Application
3-
Version=1.0.0
3+
Version=2.2
44
Name=grSim
5-
Comment=Robocup Small Size League Simulator
6-
Exec=grsim
5+
Comment=Robocup Small Size Robot Soccer Simulator
6+
Exec=grSim
77
Icon=grsim
88
Terminal=false
9-
Categories=Utility;Physics;Robotics
9+
Categories=Utility;Physics;Robotics;Application

0 commit comments

Comments
 (0)