# SHORT DESC: Objective Caml Programming Language
# LONG DESC: The Objective Caml system is the main implementation of the Caml language. It features a powerful module system and a full-fledged object-oriented layer. It comes with a native-code compiler that supports numerous architectures, for high performance; a bytecode compiler, for increased portability; and an interactive loop, for experimentation and rapid development.
# Configure procedure taken from "Yair K"'s ocaml.SlackBuild
./configure --prefix /usr --libdir ${libdir}/ocaml || exit 1
make world bootstrap opt opt.opt && \
make install || exit 1
|