summaryrefslogtreecommitdiffstats
path: root/system/opam/README
diff options
context:
space:
mode:
author Roberto Metere <roberto@metere.it>2016-07-30 07:56:33 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2016-07-30 07:56:33 +0700
commitae24f9325b2781558edf362d23b83bf966059a10 (patch)
treecca459ce13b228c34ae76719018c645a7d3d9b01 /system/opam/README
parentdc394d46aa1ba8e62bf0a2a3f7e7a431372c3e0f (diff)
downloadslackbuilds-ae24f9325b2781558edf362d23b83bf966059a10.tar.gz
slackbuilds-ae24f9325b2781558edf362d23b83bf966059a10.tar.xz
system/opam: Added (OCaml Package Manager).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/opam/README')
-rw-r--r--system/opam/README20
1 files changed, 20 insertions, 0 deletions
diff --git a/system/opam/README b/system/opam/README
new file mode 100644
index 0000000000..38d2769c00
--- /dev/null
+++ b/system/opam/README
@@ -0,0 +1,20 @@
+
+opam - OCaml Package Manager
+
+OPAM is a source-based package manager for OCaml. It supports
+multiple simultaneous compiler installations, flexible package
+constraints, and a Git-friendly development workflow.
+
+Managing your OCaml installation can be as simple as:
+
+ opam list -a # List the available packages
+ opam install lwt # Install LWT
+ opam update # Update the package list
+ ...
+ opam upgrade # Upgrade the installed packages to their latest version
+
+
+It has to be initialized. To do it, you can use the following command:
+opam init
+
+It is not recommended to run opam from root. Apparently it installs per-user packages.