mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
testing/ocaml-magic-mime: new aport
https://github.com/mirage/ocaml-magic-mime Map filenames to common MIME types
This commit is contained in:
parent
42a9467e6b
commit
c157f6cfb6
73
testing/ocaml-magic-mime/APKBUILD
Normal file
73
testing/ocaml-magic-mime/APKBUILD
Normal file
@ -0,0 +1,73 @@
|
||||
# Contributor: Celeste <cielesti@protonmail.com>
|
||||
# Maintainer: Celeste <cielesti@protonmail.com>
|
||||
pkgname=ocaml-magic-mime
|
||||
pkgver=1.3.1
|
||||
pkgrel=0
|
||||
_pkgreal=magic-mime
|
||||
pkgdesc="Map filenames to common MIME types"
|
||||
url="https://github.com/mirage/ocaml-magic-mime"
|
||||
arch="all !riscv64 !loongarch64" # ocaml
|
||||
license="ISC"
|
||||
depends_dev="$pkgname=$pkgver-r$pkgrel"
|
||||
makedepends="dune ocaml"
|
||||
subpackages="$pkgname-dev"
|
||||
source="$_pkgreal-$pkgver.tar.bz2::https://github.com/mirage/ocaml-magic-mime/releases/download/v$pkgver/magic-mime-$pkgver.tbz"
|
||||
builddir="$srcdir/$_pkgreal-$pkgver"
|
||||
|
||||
# 32-bit archs
|
||||
case "$CARCH" in
|
||||
arm*|x86) options="$options textrels" ;;
|
||||
esac
|
||||
|
||||
build() {
|
||||
dune build --release --verbose
|
||||
}
|
||||
|
||||
check() {
|
||||
dune runtest --build-dir=.testenv --verbose
|
||||
}
|
||||
|
||||
package() {
|
||||
dune install --destdir="$pkgdir" --docdir=/.omit
|
||||
}
|
||||
|
||||
dev() {
|
||||
default_dev
|
||||
|
||||
cd "$pkgdir"
|
||||
|
||||
local path; find usr/lib/ocaml \( \
|
||||
-name '*.cmt' -o \
|
||||
-name '*.cmti' -o \
|
||||
-name '*.ml' -o \
|
||||
-name '*.mli' \
|
||||
\) | while read -r path
|
||||
do
|
||||
amove "$path"
|
||||
done
|
||||
}
|
||||
|
||||
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="
|
||||
607f7469caa2e800a92e3c5248125108fad5e0513f4230a37ed774c86112eacdae0ee533c5c78ec2752e939e83e2201dd4ee02cbbff92ae32e25683710d7b365 magic-mime-1.3.1.tar.bz2
|
||||
"
|
Loading…
Reference in New Issue
Block a user