From b42877cd9239f7f785197c470372905d393ab3b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20DESBRI=C3=88RES?= Date: Thu, 5 Jun 2014 20:12:26 +0200 Subject: ocaml-extlib --- pcr/ocaml-extlib/PKGBUILD | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 pcr/ocaml-extlib/PKGBUILD (limited to 'pcr') diff --git a/pcr/ocaml-extlib/PKGBUILD b/pcr/ocaml-extlib/PKGBUILD new file mode 100644 index 000000000..38193a1c7 --- /dev/null +++ b/pcr/ocaml-extlib/PKGBUILD @@ -0,0 +1,43 @@ +# Contributor (Arch) : Patryk Kowalczyk < patryk at kowalczyk dot ws> +# Maintainer (Parabola) : Aurélien DESBRIÈRES + +pkgname=ocaml-extlib +pkgver=1.5.4 +pkgrel=2 +pkgdesc="Extends the OCaml standard library" +arch=('i686' 'x86_64') +url="http://code.google.com/p/ocaml-extlib/" +license=('LGPL') +depends=('ocaml') +makedepends=('ocaml-findlib') +source=(http://ocaml-extlib.googlecode.com/files/extlib-${pkgver}.tar.gz) + + +build() { + cd ${srcdir}/extlib-${pkgver} + + make all + make opt + + sed -i 's/cp odoc_style.css/#cp odoc_style.css/g' Makefile + sed -i 's/ocamldoc -sort -html/ocamldoc -sort -keep-code -html -colorize-code/g' Makefile + make doc + + # Install additional files + sed -i 's/ocamlfind install extlib META/ocamlfind install extlib META *.cmo *.cmx *.ml/g' Makefile +} + +package () { + _DOCDIR="${pkgdir}/usr/share/doc/ocaml-extlib" + + cd ${srcdir}/extlib-${pkgver} + + export OCAMLFIND_DESTDIR="${pkgdir}$(ocamlfind printconf destdir)" + mkdir -p "${OCAMLFIND_DESTDIR}" + make install + + # Install doc + mkdir -p $_DOCDIR + cp -r doc/* $_DOCDIR/ +} + -- cgit v1.2.3-2-g168b