aboutsummaryrefslogtreecommitdiffstats
path: root/testing/ocaml-labltk/APKBUILD
blob: 19a82c221eb67268d0c2d28afea9de9880126a70 (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
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=ocaml-labltk
_pkgname=labltk
pkgver=8.06.2
pkgrel=0
pkgdesc="Tcl/Tk interface for OCaml"
url="http://labltk.forge.ocamlcore.org/"
arch="all !x86 !armhf !s390x"  # limited by ocaml aport
license="LGPL-2.0-or-later-WITH-linking-exception"
depends_dev="$pkgname=$pkgver-r$pkgrel"
makedepends="ocaml>=4.04 tcl-dev tk tk-dev"
options="!check"  # no tests provided
subpackages="$pkgname-dev"
source="https://forge.ocamlcore.org/frs/download.php/1628/$_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="d9342d49ba8769edd7a4ed051844f6ae5d3e62a7c2c76e895bfd1162d0433c4ea54f2314b29b708551fba63daec1123553b56f0abb6412807ab00d7bb40b73d6  labltk-8.06.2.tar.gz"