1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 19:55:26 +03:00
aports/testing/ocaml-erm_xml/APKBUILD
2022-05-21 15:28:27 +00:00

67 lines
1.4 KiB
Text

# Contributor: rubicon <rubicon@mailo.com>
# Maintainer:
pkgname=ocaml-erm_xml
_pkgname=xml
pkgver=0_git20211229
_commit=a2b4db61ca93dc265ca47b51d01fa147d3b267c3
pkgrel=0
pkgdesc="XML stream parser for OCaml"
url="https://github.com/hannesm/xml"
arch="all !riscv64" # limited by ocaml aport
license="BSD-3-Clause"
depends="ocaml-runtime"
depends_dev="$pkgname=$pkgver-r$pkgrel"
makedepends="
ocaml
ocamlbuild
ocaml-findlib
ocaml-compiler-libs
"
subpackages="$pkgname-dev"
source="$pkgname-$pkgver.tar.gz::https://github.com/hannesm/xml/archive/$_commit/xml-$_commit.tar.gz"
builddir="$srcdir/$_pkgname-$_commit"
_ocamldir=usr/lib/ocaml
# 32-bit archs
case "$CARCH" in
arm*|x86) options="$options textrels" ;;
esac
build() {
ocaml setup.ml -configure --prefix /usr
ocaml setup.ml -build
}
check() {
ocaml setup.ml -test
}
package() {
export OCAMLFIND_DESTDIR="$pkgdir/$_ocamldir"
export OCAMLFIND_LDCONF=ignore
mkdir -vp "$OCAMLFIND_DESTDIR"
ocaml setup.ml -install
}
dev() {
default_dev
cd "$pkgdir"
local path; for path in $(find $_ocamldir \( \
-name '*.cmt' -o \
-name '*.cmti' -o \
-name '*.cmx' -o \
-name '*.cmxa' -o \
-name '*.ml' -o \
-name '*.mli' \
\))
do
amove "$path"
done
}
sha512sums="
ddb674fbd4e27aece25d4b288163ee7550591f8d23c7219dd212355cab9feedba847ae9990ac1219c834ec9620fcc5c4805013f99f1d5312a36c4a0c1d3f0536 ocaml-erm_xml-0_git20211229.tar.gz
"