summaryrefslogtreecommitdiff
path: root/extra/ocaml/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/ocaml/PKGBUILD')
-rw-r--r--extra/ocaml/PKGBUILD35
1 files changed, 27 insertions, 8 deletions
diff --git a/extra/ocaml/PKGBUILD b/extra/ocaml/PKGBUILD
index 97c35d6d9..a11606412 100644
--- a/extra/ocaml/PKGBUILD
+++ b/extra/ocaml/PKGBUILD
@@ -1,9 +1,10 @@
-# $Id: PKGBUILD 131871 2011-07-16 10:36:29Z tpowa $
+# $Id: PKGBUILD 138196 2011-09-18 13:56:45Z tpowa $
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
-pkgname=ocaml
+pkgbase='ocaml'
+pkgname=('ocaml' 'ocaml-compiler-libs')
pkgver=3.12.1
-pkgrel=1
+pkgrel=2
pkgdesc="A functional language with OO extensions"
arch=('i686' 'x86_64' 'mips64el')
license=('LGPL2' 'custom: QPL-1.0')
@@ -12,16 +13,12 @@ depends=('gdbm')
makedepends=('tk' 'ncurses>=5.6-7' 'libx11')
optdepends=('ncurses: advanced ncurses features' 'tk: advanced tk features')
source=(http://caml.inria.fr/distrib/ocaml-3.12/${pkgname}-${pkgver}.tar.gz
- fix-ocaml-binutils-2.21.patch
fix-caml_int64_float_of_bits-n32.patch)
-options=('!makeflags' '!emptydirs')
-md5sums=('3ba7cc65123c3579f14e7c726d3ee782'
- '8c664a0a346424ea2ec6fc6f713170c6'
+md5sums=('814a047085f0f901ab7d8e3a4b7a9e65'
'e2c8bc316efe40532c5b9d7f9a1d8d62')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
- patch -Np1 -i "${srcdir}/fix-ocaml-binutils-2.21.patch"
patch -Np1 -i "${srcdir}/fix-caml_int64_float_of_bits-n32.patch"
./configure -prefix /usr
if [ "${CARCH}" == "mips64el" ] ; then
@@ -29,6 +26,10 @@ build() {
else
make world.opt
fi
+}
+
+package_ocaml() {
+ cd "${srcdir}/${pkgbase}-${pkgver}"
make PREFIX="${pkgdir}/usr" MANDIR="${pkgdir}/usr/share/man" install
# Save >10MB with this one, makepkg only strips debug symbols.
@@ -38,3 +39,21 @@ build() {
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
install -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/"
}
+
+package_ocaml-compiler-libs() {
+pkgdesc="Several modules used internally by the OCaml compiler"
+license=('custom: QPL-1.0')
+depends=('ocaml')
+optdepends=()
+
+ cd "${srcdir}/${pkgbase}-${pkgver}"
+
+ # Install compiler libraries
+ local compiler_libs="${pkgdir}/usr/lib/ocaml/compiler-libs"
+ mkdir -p "$compiler_libs"/{parsing,typing,utils}
+ cp parsing/*.{cmi,cmo,cmx,ml,mli,mll,o} "$compiler_libs"/parsing
+ cp typing/*.{cmi,cmo,cmx,ml,mli,o} "$compiler_libs"/typing
+ cp utils/*.{cmi,cmo,cmx,ml,mli,o} "$compiler_libs"/utils
+ # duplicated by installation
+ rm -f "$compiler_libs"/typing/outcometree.{cmi,mli}
+}