aboutsummaryrefslogtreecommitdiffstats
path: root/testing/ocaml-cppo/APKBUILD
blob: e2b109da4cce24225e78c0f0b427df6b585e0a5d (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
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=ocaml-cppo
_pkgname=cppo
pkgver=1.6.4
pkgrel=0
pkgdesc="C-style preprocessor for OCaml"
url="https://github.com/mjambon/cppo"
# ocaml is not avail for x86, armhf, s390x
# test fails on ppc64le
arch="all !x86 !armhf !s390x !ppc64le"
license="BSD-3-Clause"
makedepends="dune ocaml ocamlbuild ocaml-findlib opam"
subpackages="$pkgname-dev"
source="$pkgname-$pkgver.tar.gz::https://github.com/mjambon/$_pkgname/archive/v$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"

build() {
	cd "$builddir"
	jbuilder build --root . @install @DEFAULT
}

check() {
	cd "$builddir"
	jbuilder runtest
}

package() {
	cd "$builddir"

	mkdir -p "$pkgdir"/usr/lib/ocaml
	jbuilder install \
		--destdir="$pkgdir/usr" \
		--libdir="$pkgdir/usr/lib/ocaml"

	# Remove compiled tests
	rm -Rf "$pkgdir"/usr/lib/ocaml/$_pkgname*/*.cmt*

	# Nothing interesting here.
	rm -Rf "$pkgdir"/usr/doc
}

dev() {
	default_dev

	depends="$pkgname=$pkgver-r$pkgrel"
	local sitelib="usr/lib/ocaml/${_pkgname}_ocamlbuild"

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

sha512sums="89c6df66d597d929be7532ad82f0206b028bdbd79a0b4b39451bce3fa5bd63a80dce931d575f69bd7066de829347498c736657dfe9610b20700a652b9b542a4d  ocaml-cppo-1.6.4.tar.gz"