void-packages/srcpkgs/ocaml/template
2018-07-17 14:48:38 +02:00

24 lines
687 B
Bash

# Template file for 'ocaml'
pkgname=ocaml
version=4.07.0
revision=1
makedepends="ncurses-devel libX11-devel"
short_desc="The main implementation of the Caml language"
maintainer="Leah Neukirchen <leah@vuxu.org>"
homepage="http://ocaml.org/"
license="QPL-1.0, LGPL-2.1-only"
distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz"
checksum=8dd39da81beaad53a158e71c428f902b609d8f7f33fedf37f15c56be6c4cf840
nocross=yes
disable_parallel_build=yes
do_configure() {
./configure -prefix /usr -mandir /usr/share/man -fPIC
}
do_build() {
make ${makejobs} world.opt
}
do_install() {
make PREFIX=${DESTDIR}/usr MANDIR=${DESTDIR}/usr/share/man install
vlicense LICENSE
}