#!/bin/bash
# Build script for OCaml seq compatibility package# seq is part of OCaml stdlib since 4.07# This just installs the META file for ocamlfindset -e
export PATH="$PREFIX/bin:$PATH"# Create the META file for seqmkdir -p "$PKGDIR$PREFIX/lib/ocaml/seq"cat > "$PKGDIR$PREFIX/lib/ocaml/seq/META"<< 'EOF'
description = "OCaml Seq iterator type (part of stdlib)"
version = "base"
requires = ""
EOF