2006-02-23 15:26:10 +00:00
|
|
|
# Description: Objective CAML Compiler
|
2021-03-18 18:02:37 +01:00
|
|
|
# URL: http://caml.inria.fr/
|
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
|
|
# Depends on: binutils
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=ocaml
|
2022-03-30 16:44:19 +02:00
|
|
|
version=4.14.0
|
2017-08-01 12:02:03 +02:00
|
|
|
release=1
|
2016-05-21 13:40:17 +02:00
|
|
|
source=(http://caml.inria.fr/pub/distrib/$name-${version%.*}/$name-$version.tar.xz)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
2021-03-18 18:02:37 +01:00
|
|
|
cd $name-$version
|
2020-02-25 14:32:30 +01:00
|
|
|
|
2021-03-18 18:02:37 +01:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--mandir=/usr/share/man \
|
|
|
|
--disable-force-safe-string
|
2020-02-25 14:32:30 +01:00
|
|
|
|
2021-03-18 18:02:37 +01:00
|
|
|
make world.opt
|
|
|
|
make DESTDIR=$PKG install
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|