aboutsummaryrefslogtreecommitdiffstats
path: root/testing/ocaml-labltk/APKBUILD
blob: e36d66a6c394ae8383e83af6da11ab7ea94f2dc0 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=ocaml-labltk
_pkgname=labltk
pkgver=8.06.4
pkgrel=0
_ocamlver=4.06
pkgdesc="Tcl/Tk interface for OCaml"
url="http://labltk.forge.ocamlcore.org/"
arch="all !x86 !armhf !armv7 !s390x"  # limited by ocaml aport
license="LGPL-2.0-or-later-WITH-linking-exception"
depends="ocaml-runtime"
depends_dev="$pkgname=$pkgver-r$pkgrel"
makedepends="ocaml=~$_ocamlver ocaml-compiler-libs=~$_ocamlver tcl-dev tk tk-dev"
options="!check"  # no tests provided
subpackages="$pkgname-dev"
source="https://forge.ocamlcore.org/frs/download.php/1727/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"

build() {
	cd "$builddir"

	./configure --tk-no-x11
	make -j1 all
	make -j1 opt
}

package() {
	local libdir="$pkgdir/usr/lib/ocaml"
	cd "$builddir"

	mkdir -p "$libdir"/$_pkgname \
		"$libdir"/stublibs \
		"$pkgdir"/usr/bin

	make install \
		BINDIR="$pkgdir/usr/bin" \
		INSTALLDIR="$pkgdir/usr/lib/ocaml/$_pkgname" \
		STUBLIBDIR="$pkgdir/usr/lib/ocaml/stublibs"

	# The *.o files are not installed by the Makefile.
	# AIUI that prevents linking with native code programs.
	install -m 0644 camltk/*.o "$libdir"/$_pkgname/
}

dev() {
	local sitelib="usr/lib/ocaml/$_pkgname"
	default_dev

	mkdir -p "$subpkgdir"/usr
	mv "$pkgdir"/usr/bin "$subpkgdir"/usr/

	cd "$pkgdir"/$sitelib
	mkdir -p "$subpkgdir"/$sitelib
	mv *.cmx *.cmxa *.mli "$subpkgdir"/$sitelib/
}

sha512sums="5221d2378f73cbcc2a4abd003023c01c8f0e1a919029ddb06069db30284b0bdef12e03b66b9c7c694c7a2128b060f2f2a5a34e4f3b8eed1060a0880a2e429644  labltk-8.06.4.tar.gz"