--- /var/abs/extra/ocaml/PKGBUILD 2011-04-23 23:06:46.000000000 -0500 +++ PKGBUILD 2011-04-24 11:03:08.716649451 -0500 @@ -3,7 +3,7 @@ pkgname=ocaml pkgver=3.12.0 -pkgrel=1 +pkgrel=2 pkgdesc="A functional language with OO extensions" arch=('i686' 'x86_64') license=('LGPL2' 'custom: QPL-1.0') @@ -11,14 +11,18 @@ 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) +source=(http://caml.inria.fr/distrib/ocaml-3.12/$pkgname-$pkgver.tar.gz + '0007-Fix-ocamlopt-w.r.t.-binutils-2.21.patch') +md5sums=('3ba7cc65123c3579f14e7c726d3ee782' + '8c664a0a346424ea2ec6fc6f713170c6') options=('!makeflags' '!emptydirs') build() { cd $srcdir/$pkgname-$pkgver + patch -Np1 -i ${srcdir}/0007-Fix-ocamlopt-w.r.t.-binutils-2.21.patch ./configure -prefix /usr - make world.opt || return 1 - make PREFIX=$pkgdir/usr MANDIR=$pkgdir/usr/share/man install || return 1 + make world.opt + 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 {} \; @@ -26,4 +30,3 @@ # install license install -D -m 644 $startdir/src/$pkgname-$pkgver/LICENSE $startdir/pkg/usr/share/licenses/ocaml/LICENSE } -md5sums=('3ba7cc65123c3579f14e7c726d3ee782')