aboutsummaryrefslogtreecommitdiffstats
path: root/testing/ocaml-qtest/APKBUILD
blob: dde91a61609af1a86311e721accae49e2b71fe36 (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: Andy Li <andy@onthewings.net>
# Maintainer: Andy Li <andy@onthewings.net>
pkgname=ocaml-qtest
_pkgname=qtest
pkgver=2.10.1
pkgrel=0
pkgdesc="Lightweight inline test extraction from comments"
url="https://github.com/vincent-hugot/qtest"
arch="all !x86 !armhf !armv7 !s390x !mips !mips64"  # limited by ocaml aport
license="GPL-3.0-or-later"
depends="ocaml-runtime ocaml-qcheck"
depends_dev="$pkgname=$pkgver-r$pkgrel"
makedepends="dune ocaml ocaml-findlib ocaml-qcheck-dev ocaml-ounit-dev"
subpackages="$pkgname-dev"
source="$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"

build() {
	dune build @install -p qtest -j1 --no-buffer --verbose
}

check() {
	dune runtest --verbose
}

package() {
	mkdir -p "$pkgdir"/usr/lib/ocaml
	dune install --destdir="$pkgdir"

	# There's just a README and LICENSE.
	rm -Rf "$pkgdir"/usr/doc

	# Remove annotation files and sources.
	find "$pkgdir"/usr/lib/ocaml \
		\( \
			-name '*.cmt' \
			-o -name '*.ml' \
		\) \
		-exec rm "{}" \;
}

dev() {
	default_dev

	cd "$pkgdir"

	find usr/lib/ocaml \
		\( \
			-name '*.cmx' \
			-o -name '*.cmxa' \
			-o -name '*.mli' \
		\) \
		-exec sh -c 'mkdir -p "$(dirname $1)" && mv "$1" "$subpkgdir/$(dirname $1)/"' _ {} \;
}

sha512sums="838ff1951b8da35f0551b1db4d36a03ad803a57ba8b85816a51e6b1bc2ad7778299a7fd026a062437252b40c0de1c83b6171605b19f01e3874274b2676341bf0  ocaml-qtest-2.10.1.tar.gz"