opt/ocaml/Pkgfile

23 lines
425 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
2024-05-19 11:40:05 +02:00
version=5.2.0
2017-08-01 12:02:03 +02:00
release=1
2024-06-19 13:09:28 +02:00
source=(https://github.com/ocaml/ocaml/archive/refs/tags/$version/$name-$version.tar.gz)
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
}