package orpie

  1. Overview
  2. Docs
Curses-based RPN calculator

Install

Dune Dependency

Authors

Maintainers

Sources

release-1.6.1.tar.gz
md5=a5a1ef54c70bc58c1e91af2a8139bd19
sha512=df998e96cef53ef595178dfb9b51a17d5b22a8ccd894a543fa3130e5ab2204ea367706a79b1f53307f97c22ec7ce866be2097a4588ffeb0479d804f56706f248

README.adoc.html

README.adoc

Orpie README
============

Orpie is a Curses-based RPN calculator.

== Installation
=== Using OPAM
The recommended method for installing Orpie is to use
https://opam.ocaml.org/[OPAM].  +opam install orpie+ should get the job done.

=== Without using OPAM
If you want to install manually, you will need the following OCaml packages installed:

* OCaml 4.03+
* dune
* camlp5
* ocamlfind
* curses (registered with ocamlfind)
* gsl (registered with ocamlfind)

If you have satisfied all the dependencies, then use the Makefile to build:

----
# optionally set an installation prefix (default is /usr/local)
$ export PREFIX=/usr

# optionally set a staging directory (useful if you're creating a package)
$ export DESTDIR=/tmp/orpie

# build
$ make

# install build products (use 'sudo' if installing to a root-owned location)
$ make install
----

== Usage
See the 'doc' subdirectory for more extensive documentation.