core/ocaml/PKGBUILD

41 lines
1.2 KiB
Bash
Raw Normal View History

#
# Platform Packages for Chakra, part of chakra-project.org
#
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
2010-03-14 23:48:48 +08:00
pkgname=ocaml
pkgver=3.12.1
2010-03-14 23:48:48 +08:00
pkgrel=1
pkgdesc="A functional language with OO extensions"
arch=('i686' 'x86_64')
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)
2010-03-14 23:48:48 +08:00
options=('!makeflags' '!emptydirs')
build() {
cd $srcdir/$pkgname-$pkgver
./configure -prefix /usr
make world.opt
}
package_ocaml() {
cd ${srcdir}/${pkgbase}-${pkgver}
make PREFIX=$pkgdir/usr MANDIR=$pkgdir/usr/share/man install
2010-03-14 23:48:48 +08:00
# Save >10MB with this one, makepkg only strips debug symbols.
#find ${startdir}/pkg/usr/lib -type f -name '*.so.*' -exec strip --strip-unneeded {} \;
2010-03-14 23:48:48 +08:00
# install license
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
install -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/"
2010-03-14 23:48:48 +08:00
}
md5sums=('814a047085f0f901ab7d8e3a4b7a9e65')