diff options
author | Jean-Louis Fuchs <ganwell@fangorn.ch> | 2017-04-29 15:08:37 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-05-02 09:41:09 +0000 |
commit | 988ab9f1a02b958966c19232fc8eb26b1298081a (patch) | |
tree | 5e1e96b96e4d124af5417ddb42868bf22a40b626 /community/ocaml-findlib/APKBUILD | |
parent | 92dbdda5fb890342a45fc56f376d8c2bf652dccb (diff) | |
download | aports-988ab9f1a02b958966c19232fc8eb26b1298081a.tar.bz2 aports-988ab9f1a02b958966c19232fc8eb26b1298081a.tar.xz |
community/ocaml-findlib: move from testing
Diffstat (limited to 'community/ocaml-findlib/APKBUILD')
-rw-r--r-- | community/ocaml-findlib/APKBUILD | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/community/ocaml-findlib/APKBUILD b/community/ocaml-findlib/APKBUILD new file mode 100644 index 0000000000..8f249f7250 --- /dev/null +++ b/community/ocaml-findlib/APKBUILD @@ -0,0 +1,57 @@ +# Contributor: Jakub Jirutka <jakub@jirutka.cz> +# Maintainer: Jakub Jirutka <jakub@jirutka.cz> +pkgname=ocaml-findlib +_pkgname=findlib +pkgver=1.6.2 +pkgrel=1 +pkgdesc="OCaml package manager" +url="http://projects.camlcity.org/projects/findlib.html" +arch="all !x86 !armhf !ppc64le" # limited by ocaml abuild +license="MIT" +depends="ocaml" +depends_dev="$pkgname" +makedepends="m4 ncurses-dev" +subpackages="$pkgname-dev $pkgname-doc" +source="http://download.camlcity.org/download/$_pkgname-$pkgver.tar.gz + Makefile.patch" +builddir="$srcdir/$_pkgname-$pkgver" + +build() { + cd "$builddir" + + ./configure \ + -sitelib /usr/lib/ocaml \ + -mandir /usr/share/man \ + -config /etc/$_pkgname.conf || return 1 + make all opt +} + +package() { + cd "$builddir" + + make prefix="$pkgdir" install || return 1 + + mkdir -p "$pkgdir"/usr/share/doc/$_pkgname/ + install -m 644 doc/README doc/QUICKSTART \ + "$pkgdir"/usr/share/doc/$_pkgname/ +} + +dev() { + local sitelib="usr/lib/ocaml/$_pkgname" + + default_dev || return 1 + + cd "$pkgdir" + mkdir -p "$subpkgdir"/$sitelib + mv $sitelib/*.cmxa \ + $sitelib/*.mli \ + $sitelib/Makefile.config \ + "$subpkgdir"/$sitelib/ +} + +md5sums="530ff275d6b96e140f0d3a03ed14b68e findlib-1.6.2.tar.gz +c04881f3c22cd76995cec2e43cdbf5dd Makefile.patch" +sha256sums="3917904342ffbb66089f9fec1adc023b8854178bc21f303e4cbf96b8b164c946 findlib-1.6.2.tar.gz +bd89122837bc304f89dcd438e174d681fa145d80299ef3af1f6f71a08a8143ab Makefile.patch" +sha512sums="8c4098e6956530bc88d20a1b91512c68368e8a866398ce4d504afe3f71e81124c01644ba31ff97da6e61e7410328b533fb1d31a513166231047dab1933179fc4 findlib-1.6.2.tar.gz +e6f9b0d4519518b01665142061f07f329ab8a4ced0c6b8c7aaa3dd8801548a2154616da7369e9d923635fb5c1d16e77623acb51c235f2141aa25357c907de9af Makefile.patch" |