mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 03:07:13 +08:00
59 lines
2.0 KiB
Bash
59 lines
2.0 KiB
Bash
# maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
# contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/ocaml/
|
|
|
|
pkgbase='ocaml'
|
|
pkgname=('ocaml' 'ocaml-compiler-libs')
|
|
_pkgver=4.03
|
|
pkgver=4.03.0
|
|
pkgrel=1
|
|
pkgdesc="A functional language with OO extensions"
|
|
arch=('x86_64')
|
|
license=('LGPL2.1' 'custom: QPL-1.0')
|
|
url="http://ocaml.org/"
|
|
depends=('gdbm')
|
|
makedepends=('tk>=8.6.0' 'ncurses>=5.6-7' 'libx11')
|
|
optdepends=('ncurses: advanced ncurses features' 'tk: advanced tk features')
|
|
source=(http://caml.inria.fr/pub/distrib/${pkgbase}-${_pkgver}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('43812739ea1b4641cf480f57f977c149')
|
|
options=('!makeflags' '!emptydirs' 'staticlibs')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure -prefix /usr -x11include /usr/include
|
|
make world.opt
|
|
}
|
|
|
|
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.
|
|
#find "${pkgdir}/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}/"
|
|
}
|
|
|
|
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}
|
|
|
|
# install license
|
|
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
install -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/"
|
|
}
|