blob: fc403293c7ab7a7ba14ebd27c474be792b825800 (
plain)
1 # Description: Objective CAML Compiler
2 # URL: http://caml.inria.fr/
3 # Maintainer: Jürgen Daubert, juergen dot daubert at t-online dot de
4 # Packager: Erlend Bergsås Mikkelsen, howl at online dot no
5 # Depends on: ncruses, gdbm, xorg-libx11, xorg-libxau
6
7 name=ocaml
8 version=3.09.3
9 release=1
10 source=(http://caml.inria.fr/pub/distrib/$name-3.09/$name-$version.tar.bz2)
11
12 build() {
13 cd $name-$version
14 ./configure -prefix /usr -with-pthread --no-tk
15 make world opt
16 make PREFIX=$PKG/usr install installopt
17 sed -i "s|$PKG||" $PKG/usr/lib/ocaml/ld.conf
18 }
|