37 lines
1.4 KiB
Text
37 lines
1.4 KiB
Text
# Template file for 'ocaml'
|
|
pkgname=ocaml
|
|
_majorver=4.00
|
|
version=${_majorver}.0
|
|
revision=1
|
|
build_style=configure
|
|
configure_args="-prefix /usr -mandir /usr/share/man"
|
|
make_build_args="world.opt"
|
|
_ocprefix="${XBPS_DESTDIR}/${pkgname}-${version}/usr"
|
|
make_install_args="PREFIX=${_ocprefix} MANDIR=${_ocprefix}/share/man"
|
|
disable_parallel_build=yes
|
|
makedepends="gdbm-devel ncurses-devel libX11-devel"
|
|
short_desc="The main implementation of the Caml language"
|
|
maintainer="davehome <davehome@redthumb.info.tm>"
|
|
homepage="http://caml.inria.fr"
|
|
license="QPL-1,LGPL-2"
|
|
distfiles="${homepage}/pub/distrib/${pkgname}-${_majorver}/${pkgname}-${version}.tar.bz2"
|
|
checksum=ec886d7bc587ce472fcbdf294feb4b1fa2d8e7ef78ab6a4e66551699435d5cd7
|
|
long_desc="
|
|
Caml is a general-purpose programming language, designed with program safety
|
|
and reliability in mind. It is very expressive, yet easy to learn and use. Caml
|
|
supports functional, imperative, and object-oriented programming styles.
|
|
|
|
Some features are:
|
|
- A powerful type system, with parametric polymorphism and type inference.
|
|
- User-definable algebraic data types and pattern matching.
|
|
- Automatic memory management: fast, unobtrusive, incremental GC.
|
|
- A sophisticated module system.
|
|
- Expressive OO layer; multiple inheritance and parametric classes.
|
|
- Efficient native code compilers."
|
|
|
|
subpackages="${pkgname}-compiler-libs"
|
|
|
|
post_install() {
|
|
vinstall LICENSE 644 usr/share/licenses/${pkgname}
|
|
}
|
|
|