mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 23:06:40 +02:00
leaving the Maintainer comment there for better visual cues, syntax highlighting, and easy conversion to a Contributor comment since Contributor comments are not being removed, just treat my Maintainer comments like Contributor ones, as a normal comment
146 lines
2.8 KiB
Text
146 lines
2.8 KiB
Text
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
|
|
# Maintainer: Celeste <cielesti@protonmail.com>
|
|
maintainer="Celeste <cielesti@protonmail.com>"
|
|
pkgname=utop
|
|
pkgver=2.9.1
|
|
pkgrel=4
|
|
pkgdesc="Universal toplevel for OCaml"
|
|
url="https://github.com/ocaml-community/utop"
|
|
arch="all !riscv64 !loongarch64" # ocaml
|
|
license="BSD-3-Clause"
|
|
depends="
|
|
ocaml-$pkgname=$pkgver-r$pkgrel
|
|
$pkgname-common=$pkgver-r$pkgrel
|
|
"
|
|
makedepends="
|
|
dune
|
|
ocaml
|
|
ocaml-bigarray-compat-dev
|
|
ocaml-camomile-dev
|
|
ocaml-charinfo_width-dev
|
|
ocaml-compiler-libs
|
|
ocaml-cppo
|
|
ocaml-csexp-dev
|
|
ocaml-findlib-dev
|
|
ocaml-lambda-term-dev
|
|
ocaml-lwt-dev
|
|
ocaml-lwt_log-dev
|
|
ocaml-lwt_react
|
|
ocaml-mew-dev
|
|
ocaml-mew_vi-dev
|
|
ocaml-mmap-dev
|
|
ocaml-ocplib-endian-dev
|
|
ocaml-react-dev
|
|
ocaml-result-dev
|
|
ocaml-seq-dev
|
|
ocaml-trie-dev
|
|
ocaml-zed-dev
|
|
"
|
|
subpackages="
|
|
$pkgname-full:_full
|
|
$pkgname-common:_common:noarch
|
|
$pkgname-doc
|
|
$pkgname-emacs::noarch
|
|
ocaml-$pkgname-dev:_libdev
|
|
ocaml-$pkgname:_lib
|
|
"
|
|
source="$pkgname-$pkgver.tar.bz2::https://github.com/ocaml-community/utop/releases/download/$pkgver/utop-$pkgver.tbz"
|
|
|
|
# 32-bit archs
|
|
case "$CARCH" in
|
|
arm*|x86) options="$options textrels" ;;
|
|
esac
|
|
|
|
build() {
|
|
export OCAMLPATH=/usr/lib/ocaml
|
|
dune build --root . @install --no-buffer --verbose
|
|
}
|
|
|
|
check() {
|
|
dune runtest --no-buffer --verbose
|
|
}
|
|
|
|
package() {
|
|
dune install \
|
|
--destdir="$pkgdir" \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib/ocaml
|
|
|
|
# There's just a readme and changelog.
|
|
rm -Rf "$pkgdir"/usr/doc
|
|
|
|
mkdir -vp "$pkgdir"/usr/share
|
|
mv -vf "$pkgdir"/usr/man "$pkgdir"/usr/share/
|
|
}
|
|
|
|
_full() {
|
|
pkgdesc="$pkgdesc (non-expunged)"
|
|
|
|
amove usr/bin/utop-full
|
|
}
|
|
|
|
_common() {
|
|
pkgdesc="Common files for utop and utop-full"
|
|
depends=""
|
|
|
|
amove usr/share/$pkgname
|
|
}
|
|
|
|
emacs() {
|
|
pkgdesc="utop plugin for Emacs"
|
|
depends="$pkgname=$pkgver-r$pkgrel"
|
|
install_if="$pkgname=$pkgver-r$pkgrel emacs"
|
|
|
|
amove usr/share/emacs
|
|
}
|
|
|
|
_libdev() {
|
|
pkgdesc="$pkgdesc (development files)"
|
|
depends="ocaml-$pkgname=$pkgver-r$pkgrel"
|
|
local sitelib="usr/lib/ocaml/$pkgname"
|
|
|
|
cd "$pkgdir"
|
|
|
|
local path; find $sitelib \( \
|
|
-name '*.cmt' -o \
|
|
-name '*.cmti' -o \
|
|
-name '*.ml' -o \
|
|
-name '*.mli' \
|
|
\) | while read -r path
|
|
do
|
|
amove "$path"
|
|
done
|
|
|
|
}
|
|
|
|
_lib() {
|
|
pkgdesc="$pkgdesc (library)"
|
|
depends=""
|
|
|
|
amove usr/lib/ocaml
|
|
}
|
|
|
|
prepare_py_provides() {
|
|
local datadir="${subpkgdir:-$pkgdir}"
|
|
local pkgbasedir=${pkgbasedir:-"$startdir/pkg"}
|
|
local controldir="$pkgbasedir"/.control.${subpkgname:-$pkgname}
|
|
|
|
options_has "!tracedeps" && return 0
|
|
|
|
ocaml4-abuild-find provides \
|
|
"$datadir"/usr/lib/ocaml \
|
|
"$controldir" \
|
|
"$pkgver-r$pkgrel"
|
|
}
|
|
|
|
scan_python3_dependency() {
|
|
local controldir="$2" datadir="$3"
|
|
|
|
ocaml4-abuild-find requires \
|
|
"$datadir"/usr/lib/ocaml \
|
|
"$controldir"
|
|
}
|
|
|
|
sha512sums="
|
|
002fa809d4924419f51b81df968b653a111ae5992837792fcb867adf2e44c15d40fadccc9784ef61f21ea3233f9da74016433920bf909d808752b7f825f8cdb1 utop-2.9.1.tar.bz2
|
|
"
|