2012-09-30 05:11:16 +00:00
|
|
|
# Template file for 'ocaml'
|
|
|
|
pkgname=ocaml
|
|
|
|
_majorver=4.00
|
|
|
|
version=${_majorver}.0
|
2013-04-29 10:34:30 +00:00
|
|
|
revision=3
|
2012-09-30 05:11:16 +00:00
|
|
|
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."
|
|
|
|
|
2013-04-14 03:01:48 +00:00
|
|
|
disable_parallel_build=yes
|
|
|
|
|
|
|
|
do_configure() {
|
|
|
|
./configure -prefix /usr -mandir /usr/share/man
|
|
|
|
}
|
|
|
|
|
|
|
|
do_build() {
|
|
|
|
make ${makejobs} world.opt
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
2013-04-16 12:39:52 +00:00
|
|
|
local compiler_libs=${DESTDIR}/usr/lib/ocaml/compiler-libs
|
|
|
|
|
2013-04-14 03:01:48 +00:00
|
|
|
make PREFIX=${DESTDIR}/usr MANDIR=${DESTDIR}/usr/share/man install
|
2012-09-30 05:11:16 +00:00
|
|
|
|
|
|
|
vinstall LICENSE 644 usr/share/licenses/${pkgname}
|
2013-04-16 12:39:52 +00:00
|
|
|
|
|
|
|
mkdir -pv "${compiler_libs}"/{parsing,typing,utils}
|
|
|
|
cp -v parsing/*.{cmi,cmo,cmx,ml,mli,mll,o} "${compiler_libs}"/parsing
|
|
|
|
cp -v typing/*.{cmi,cmo,cmx,ml,mli,o} "${compiler_libs}"/typing
|
|
|
|
cp -v utils/*.{cmi,cmo,cmx,ml,mli,o} "${compiler_libs}"/utils
|
2012-09-30 05:11:16 +00:00
|
|
|
}
|
|
|
|
|
2013-04-14 03:01:48 +00:00
|
|
|
|
|
|
|
ocaml-compiler-libs_package() {
|
2013-04-29 10:34:30 +00:00
|
|
|
depends="ocaml>=${version}"
|
2013-04-14 03:01:48 +00:00
|
|
|
short_desc+=" -- shared libraries"
|
|
|
|
pkg_install() {
|
2013-04-16 12:39:52 +00:00
|
|
|
vmove usr/lib/ocaml/compiler-libs
|
2013-04-14 03:01:48 +00:00
|
|
|
vinstall ${wrksrc}/LICENSE 644 usr/share/licenses/${pkgname}
|
2013-04-16 12:39:52 +00:00
|
|
|
rm -f ${PKGDESTDIR}/usr/lib/ocaml/compiler-libs/typing/outcometree.{cmi,mli}
|
2013-04-14 03:01:48 +00:00
|
|
|
}
|
|
|
|
}
|