opt/ocaml/Pkgfile

23 lines
420 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
2023-09-15 10:53:26 +02:00
# Depends on: zstd
2006-02-23 16:26:10 +01:00
name=ocaml
2023-09-15 10:53:26 +02:00
version=5.1.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 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 \
2023-04-18 11:07:24 +02:00
--mandir=/usr/share/man
2020-02-25 14:32:30 +01:00
2021-03-18 18:02:37 +01:00
make world.opt
make DESTDIR=$PKG install
2023-04-18 11:07:24 +02:00
rm -r $PKG/usr/share/doc
2006-02-23 16:26:10 +01:00
}