mirror of
https://github.com/louisrubet/rpn
synced 2024-12-28 09:58:52 +01:00
#120: new doc form
This commit is contained in:
parent
233956b67c
commit
969e868fee
3 changed files with 24 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
||||||
# **rpn** - Generation
|
# **rpn** - generation
|
||||||
|
|
||||||
For now rpn is proposed only for **GNU/Linux**
|
For now rpn is proposed only for **GNU/Linux**
|
||||||
|
|
||||||
|
@ -58,6 +58,8 @@ rpn v2.1 is statically linked against
|
||||||
- make
|
- make
|
||||||
|
|
||||||
CMake must be installed on the generation machine
|
CMake must be installed on the generation machine
|
||||||
|
|
||||||
|
To build RPM package you should install CMake 2.6.0 or higher
|
||||||
|
|
||||||
```
|
```
|
||||||
# cd rpn/
|
# cd rpn/
|
||||||
|
@ -65,7 +67,26 @@ rpn v2.1 is statically linked against
|
||||||
# cd build && cmake .. && make
|
# cd build && cmake .. && make
|
||||||
```
|
```
|
||||||
|
|
||||||
- then install
|
- install
|
||||||
```
|
```
|
||||||
|
# cd rpn/build
|
||||||
# sudo make install
|
# sudo make install
|
||||||
```
|
```
|
||||||
|
|
||||||
|
- packages
|
||||||
|
- DEB
|
||||||
|
```
|
||||||
|
# cd rpn/build
|
||||||
|
# make package
|
||||||
|
```
|
||||||
|
- RPM
|
||||||
|
rpmbuild must be installed
|
||||||
|
```
|
||||||
|
# cd rpn/build
|
||||||
|
# cpack -G RPM
|
||||||
|
```
|
||||||
|
- TGZ
|
||||||
|
```
|
||||||
|
# cd rpn/build
|
||||||
|
# cpack -G TGZ
|
||||||
|
```
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# **rpn** - Reference manual
|
# **rpn** - reference manual
|
||||||
|
|
||||||
**rpn**
|
**rpn**
|
||||||
- is a **math-oriented language** inspired by Hewlett-Packard **R**everse **P**olish **L**isp (**HP28S** user manual is provided as a reference), it includes at least **stack**, **store**, **branch**, **test**, **trig** and **logs** commands
|
- is a **math-oriented language** inspired by Hewlett-Packard **R**everse **P**olish **L**isp (**HP28S** user manual is provided as a reference), it includes at least **stack**, **store**, **branch**, **test**, **trig** and **logs** commands
|
||||||
|
|
|
@ -40,8 +40,6 @@ A reference manual is provided [here](MANUAL.md)
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
Installation packages are provided in deb, rpm and tar.bz2 formats
|
|
||||||
|
|
||||||
[**download .deb**]()
|
[**download .deb**]()
|
||||||
|
|
||||||
[**download .rpm**]()
|
[**download .rpm**]()
|
||||||
|
|
Loading…
Reference in a new issue