this repo has no description
1opam-version: "2.0"
2homepage: "https://github.com/LaurentMazare/ocaml-torch"
3license: "BSD-3-Clause"
4maintainer: "lmazare@gmail.com"
5bug-reports: "https://github.com/LaurentMazare/ocaml-torch/issues"
6dev-repo: "git+https://github.com/LaurentMazare/ocaml-torch.git"
7authors: [
8 "Laurent Mazare"
9]
10install: [
11 [
12 "sh"
13 "-c"
14 "test -d %{lib}%/libtorch/lib/libtorch.so || ( unzip libtorch-linux.zip && mv -f libtorch %{lib}%/ )"
15 ]
16]
17synopsis: "LibTorch library package"
18description: """
19This is used by the torch package to trigger the install of the
20libtorch library."""
21extra-source "libtorch-linux.zip" {
22 src:
23 "https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.13.0%2Bcpu.zip"
24 checksum: [
25 "sha256=d52f63577a07adb0bfd6d77c90f7da21896e94f71eb7dcd55ed7835ccb3b2b59"
26 "md5=b4e2be3e0ae4df35a93fb2b442d21eea"
27 ]
28}
29available: arch = "x86_64" & os = "linux"