mirror of
https://github.com/louisrubet/rpn
synced 2024-12-27 09:58:56 +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**
|
||||
|
||||
|
@ -58,6 +58,8 @@ rpn v2.1 is statically linked against
|
|||
- make
|
||||
|
||||
CMake must be installed on the generation machine
|
||||
|
||||
To build RPM package you should install CMake 2.6.0 or higher
|
||||
|
||||
```
|
||||
# cd rpn/
|
||||
|
@ -65,7 +67,26 @@ rpn v2.1 is statically linked against
|
|||
# cd build && cmake .. && make
|
||||
```
|
||||
|
||||
- then install
|
||||
- install
|
||||
```
|
||||
# cd rpn/build
|
||||
# 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**
|
||||
- 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 packages are provided in deb, rpm and tar.bz2 formats
|
||||
|
||||
[**download .deb**]()
|
||||
|
||||
[**download .rpm**]()
|
||||
|
|
Loading…
Reference in a new issue