summaryrefslogtreecommitdiff
path: root/extra/ocaml/PKGBUILD
blob: 97c35d6d9efd45976bcf5ff30470da9ec9a81cc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# $Id: PKGBUILD 131871 2011-07-16 10:36:29Z tpowa $
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>

pkgname=ocaml	
pkgver=3.12.1
pkgrel=1
pkgdesc="A functional language with OO extensions"
arch=('i686' 'x86_64' 'mips64el')
license=('LGPL2' 'custom: QPL-1.0')
url="http://caml.inria.fr/"
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'
         '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
      make world
  else
      make world.opt
  fi
  make PREFIX="${pkgdir}/usr" MANDIR="${pkgdir}/usr/share/man" install
   
  # Save >10MB with this one, makepkg only strips debug symbols.
  #find ${startdir}/pkg/usr/lib -type f -name '*.so.*' -exec strip --strip-unneeded {} \;

  # install license
  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
  install -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/"
}