19 lines
546 B
Plaintext
19 lines
546 B
Plaintext
|
# Description: Objective CAML Compiler
|
|||
|
# URL: http://caml.inria.fr/
|
|||
|
# Maintainer: J<>rgen Daubert, juergen dot daubert at t-online dot de
|
|||
|
# Packager: Erlend Bergs<67>s Mikkelsen, howl at online dot no
|
|||
|
# Depends on: gdbm, x11
|
|||
|
|
|||
|
name=ocaml
|
|||
|
version=3.09.1
|
|||
|
release=1
|
|||
|
source=(http://caml.inria.fr/pub/distrib/$name-3.09/$name-$version.tar.bz2)
|
|||
|
|
|||
|
build() {
|
|||
|
cd $name-$version
|
|||
|
./configure -prefix /usr -with-pthread --no-tk
|
|||
|
make world opt
|
|||
|
make PREFIX=$PKG/usr install installopt
|
|||
|
sed -i "s|$PKG||" $PKG/usr/lib/ocaml/ld.conf
|
|||
|
}
|