opt/ocaml/Pkgfile

22 lines
430 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01: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 16:26:10 +01:00
name=ocaml
2022-12-21 12:15:07 +01:00
version=4.14.1
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 16:26:10 +01: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 16:26:10 +01:00
}