opt/ocaml/Pkgfile

24 lines
493 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Objective CAML Compiler
# URL: http://caml.inria.fr/
2011-02-02 13:44:37 +01:00
# Maintainer: Juergen Daubert, jue at crux dot nu
2018-10-08 11:59:33 +02:00
# Depends on: binutils
2006-02-23 16:26:10 +01:00
name=ocaml
2020-09-01 19:03:47 +02:00
version=4.11.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() {
cd $name-$version
2020-02-25 14:32:30 +01:00
./configure \
--prefix=/usr \
--mandir=/usr/share/man \
--disable-force-safe-string
2018-10-08 11:59:33 +02:00
make world.opt
2016-05-21 13:40:17 +02:00
make DESTDIR=$PKG install
2020-02-25 14:32:30 +01:00
2018-07-12 14:19:16 +02:00
chmod -R g-w $PKG
2006-02-23 16:26:10 +01:00
}