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