# This -*- sh -*- script is part of our reusable OCaml BRICKS library # Copyright (C) 2008 Luca Saiu # Copyright (C) 2008 Jean-Vincent Loddo # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 2 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . ########################################################################### ########################################################################### # This file should be hand-edited at configuration time, before compiling. ########################################################################### ########################################################################### ########################################################################### # Section 1: Configuration choices ########################################################################### # (this section is empty for ocamlbricks). ########################################################################### # Section 2: Installation setup: prefixes, and the like ########################################################################### # Installation prefix for OCaml libraries: they will be installed into # $prefix/$name, where $name is the package name defined in META. # This is a reasonable default, but you can change it if you really want # to install into a different, custom prefix. # *No* trailing slash should be included. libraryprefix=`ocamlc -where || exit -1` #libraryprefix=/mystrangepath # This may be useful for distributions of linux that do not have ocaml sources # OCAML sources: ocaml_sources=/usr/include/caml # Installation prefix, for example /usr or /usr/local # *No* trailing slash should be included. prefix=/usr/local # Prefix for host-wide configuration files; you should probably keep the # default setting: configurationprefix=/etc # Prefix for documentation files; you should probably keep the # default setting: documentationprefix="$prefix/share/doc" ########################################################################### # Section 3: Default configuration. This will end up in /etc/$name at # installation time, providing the default host configuration for this # package. Individual users can still override defaults by defining their # own ~/.$name customization file. ###########################################################################