Skip to content

Commit 6475c15

Browse files
authored
Merge pull request ocaml#26781 from UnixJunkie/liblinear_247
2 parents 85911bc + 268ddc0 commit 6475c15

File tree

1 file changed

+35
-0
lines changed
  • packages/liblinear/liblinear.2.47

1 file changed

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

0 commit comments

Comments
 (0)