blob: df25c850d8799a884ffdb9fd26e6190111a6363f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Maintainer: Daniel Peukert <daniel@peukert.cc>
# Contributor: Lance Roy <ldr709@gmail.com>
_projectname='core_unix'
pkgname="ocaml-$_projectname"
pkgver='0.17.0'
pkgrel='5'
epoch='1'
pkgdesc='Unix-specific extensions to some of the modules defined in ocaml-core and ocaml-core_kernel'
arch=('x86_64' 'aarch64')
url="https://github.com/janestreet/$_projectname"
license=('MIT')
depends=('ocaml>=5.1.0' 'ocaml-core>=0.17.0' 'ocaml-core_kernel>=0.17.0' 'ocaml-expect_test_helpers_core>=0.17.0' 'ocaml-jane-street-headers>=0.17.0' 'ocaml-jst-config>=0.17.0' 'ocaml-ppx_jane>=0.17.0' 'ocaml-ppx_optcomp>=0.17.0' 'ocaml-sexplib>=0.17.0' 'ocaml-timezone>=0.17.0' 'ocaml-uopt>=0.17.0' 'ocaml-spawn>=0.15.0')
makedepends=('dune>=3.11.0')
options=('!strip')
source=(
"$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
'fix-ocaml-530-build.diff'
)
b2sums=('9afc07343427e84dc71df23b2d3a4e02780dcb75b4969d06a7d06d47b7dfe17e464223258733673265491cecfbea07f92f429167b81ead226319c452e4b895db'
'0e25445765d9c032fc6ab044ffa8f161433f430701e6b3027849010a1b13614e3c6f5315de0e10debd09d64f38f0b6d26b15621f4c930005d28c55664a97f83b')
_sourcedirectory="$_projectname-$pkgver"
prepare() {
cd "$srcdir/$_sourcedirectory/"
# Fix build with ocaml 5.3.0
patch --forward -p1 < '../fix-ocaml-530-build.diff'
# Disable broken test
sed -i 's/command_validate_parsing//g' 'command_unix/test-bin/dune'
rm 'command_unix/test-bin/command_validate_parsing.ml'{,i}
rm 'command_unix/test/setup-script.sh' 'command_unix/test/test-validate-parsing.t' 'command_unix/test/test_command_validate_parsing_flag.ml'{,i}
}
build() {
cd "$srcdir/$_sourcedirectory/"
dune build --release --verbose
}
check() {
cd "$srcdir/$_sourcedirectory/"
dune runtest --release --verbose
}
package() {
cd "$srcdir/$_sourcedirectory/"
DESTDIR="$pkgdir" dune install --prefix '/usr' --libdir '/usr/lib/ocaml' --docdir '/usr/share/doc' --mandir '/usr/share/man' --release --verbose
for _folder in "$pkgdir/usr/share/doc/"*; do
mv "$_folder" "$pkgdir/usr/share/doc/ocaml-$(basename "$_folder")"
done
install -dm755 "$pkgdir/usr/share/licenses/$pkgname"
ln -sf "/usr/share/doc/$pkgname/LICENSE.md" "$pkgdir/usr/share/licenses/$pkgname/MIT"
}
|