2012-09-30 07:11:16 +02:00
|
|
|
# Template file for 'ocaml'
|
|
|
|
pkgname=ocaml
|
2014-08-30 14:11:37 +02:00
|
|
|
_majorver=4.02
|
2012-09-30 07:11:16 +02:00
|
|
|
version=${_majorver}.0
|
2014-08-30 14:11:37 +02:00
|
|
|
revision=1
|
|
|
|
makedepends="ncurses-devel libX11-devel"
|
2012-09-30 07:11:16 +02:00
|
|
|
short_desc="The main implementation of the Caml language"
|
2014-06-08 12:15:44 +02:00
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2012-09-30 07:11:16 +02:00
|
|
|
homepage="http://caml.inria.fr"
|
|
|
|
license="QPL-1,LGPL-2"
|
2014-08-30 14:11:37 +02:00
|
|
|
distfiles="${homepage}/pub/distrib/${pkgname}-${_majorver}/${pkgname}-${version}.tar.xz"
|
|
|
|
checksum=87d7a59e90659bea57ae25659bbd25d56fe09e93465f2a11b610f3f537ca85d6
|
|
|
|
nocross=yes
|
2013-04-14 05:01:48 +02:00
|
|
|
|
|
|
|
do_configure() {
|
|
|
|
./configure -prefix /usr -mandir /usr/share/man
|
|
|
|
}
|
|
|
|
|
|
|
|
do_build() {
|
|
|
|
make ${makejobs} world.opt
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
2013-04-16 14:39:52 +02:00
|
|
|
local compiler_libs=${DESTDIR}/usr/lib/ocaml/compiler-libs
|
|
|
|
|
2013-04-14 05:01:48 +02:00
|
|
|
make PREFIX=${DESTDIR}/usr MANDIR=${DESTDIR}/usr/share/man install
|
2012-09-30 07:11:16 +02:00
|
|
|
|
2014-08-30 14:11:37 +02:00
|
|
|
vlicense LICENSE
|
2013-04-14 05:01:48 +02:00
|
|
|
}
|