blob: ac015e64b5e112e9e8af335bc8013eee7190c2c8 (
plain)
1 # Description: Objective CAML Compiler
2 # URL: http://caml.inria.fr/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: binutils
5
6 name=ocaml
7 version=4.14.1
8 release=1
9 source=(http://caml.inria.fr/pub/distrib/$name-${version%.*}/$name-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13
14 ./configure \
15 --prefix=/usr \
16 --mandir=/usr/share/man \
17 --disable-force-safe-string
18
19 make world.opt
20 make DESTDIR=$PKG install
21 }
|