From 60c93c968a9cf7307c6bded033a7025d5d9372cd Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Mon, 5 Mar 2018 11:25:17 +0100 Subject: testing/ocaml-cppo: new aport https://github.com/mjambon/cppo C-style preprocessor for OCaml --- testing/ocaml-cppo/APKBUILD | 52 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 testing/ocaml-cppo/APKBUILD (limited to 'testing/ocaml-cppo/APKBUILD') diff --git a/testing/ocaml-cppo/APKBUILD b/testing/ocaml-cppo/APKBUILD new file mode 100644 index 0000000000..5ba91350ee --- /dev/null +++ b/testing/ocaml-cppo/APKBUILD @@ -0,0 +1,52 @@ +# Contributor: Jakub Jirutka +# Maintainer: Jakub Jirutka +pkgname=ocaml-cppo +_pkgname=cppo +pkgver=1.6.4 +pkgrel=0 +pkgdesc="C-style preprocessor for OCaml" +url="https://github.com/mjambon/cppo" +arch="all !x86 !armhf !s390x" # limited by ocaml abuild +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" -- cgit v1.2.3