this repo has no description
1opam-version: "2.0"
2authors: "https://www.csie.ntu.edu.tw/~cjlin/liblinear/contributors.html"
3homepage: "https://www.csie.ntu.edu.tw/~cjlin/liblinear"
4#maintainer: "https://www.csie.ntu.edu.tw/~cjlin/index.html"
5maintainer: "unixjunkie@sdf.org"
6bug-reports: "https://github.com/ocaml/opam-repository/issues"
7license: "BSD-3-Clause"
8build: [
9 [make]
10]
11install: [
12 ["cp" "train" "%{bin}%/liblinear_train"]
13 ["cp" "predict" "%{bin}%/liblinear_predict"]
14]
15depends: [
16 "conf-gcc"
17 "conf-g++"
18]
19available: os != "win32"
20synopsis: "User-space installer for liblinear"
21description: """
22Attempt a user-space installation of liblinear.
23If successful, liblinear_train and liblinear_predict will be installed
24into opam's bin directory.
25Note: liblinear is a C++ software which is required by some OCaml
26software in opam-repository.
27Having an automatic user-space installer in opam-repos. will make those
28software easier to install (e.g. even if you don't have root access
29to install the liblinear system package).
30"""
31dev-repo: "git://https://github.com/cjlin1/liblinear.git"
32url {
33 src: "https://github.com/cjlin1/liblinear/archive/refs/tags/v247.tar.gz"
34 checksum: [
35 "sha256=a62c46f20a01a4626260462c905721f5471da4550d38c3b68ffacf0aa64067b4"
36 ]
37}