diff options
Diffstat (limited to 'testing/ocamlclean')
-rw-r--r-- | testing/ocamlclean/APKBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/testing/ocamlclean/APKBUILD b/testing/ocamlclean/APKBUILD new file mode 100644 index 0000000000..7e70ae7e62 --- /dev/null +++ b/testing/ocamlclean/APKBUILD @@ -0,0 +1,30 @@ +# Contributor: Jakub Jirutka <jakub@jirutka.cz> +# Maintainer: Jakub Jirutka <jakub@jirutka.cz> +pkgname=ocamlclean +pkgver=2.1 +pkgrel=0 +pkgdesc="OCaml Bytecode Cleaner" +url="http://www.algo-prog.info/ocapic/web/index.php?id=OCAPIC:OCamlClean" +arch="all !x86 !armhf !s390x" # limited by ocaml aport +license="CECILL-2.0" +makedepends="bash ocaml ocamlbuild" +subpackages="$pkgname-doc" +# backup: https://github.com/bvaugon/ocamlclean +source="$pkgname-$pkgver.tar.bz2::http://www.algo-prog.info/ocapic/web/lib/exe/fetch.php?media=ocapic:$pkgname-$pkgver.tar.bz2" +builddir="$srcdir/$pkgname-$pkgver" + +build() { + cd "$builddir" + + ./configure \ + -prefix "$pkgdir/usr" \ + -mandir "$pkgdir/usr/share/man" + make +} + +package() { + cd "$builddir" + make install +} + +sha512sums="6554f452c48c853fed4587456c582f31a47d947772975ba17e5a4cbb566fa61ed996dee23ec83fe360c7bcf65cc9f8544c78491769e8546b05dbada53b4cf73d ocamlclean-2.1.tar.bz2" |