-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26781 from UnixJunkie/liblinear_247
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
opam-version: "2.0" | ||
authors: "https://www.csie.ntu.edu.tw/~cjlin/liblinear/contributors.html" | ||
homepage: "https://www.csie.ntu.edu.tw/~cjlin/liblinear" | ||
#maintainer: "https://www.csie.ntu.edu.tw/~cjlin/index.html" | ||
maintainer: "[email protected]" | ||
bug-reports: "https://github.com/ocaml/opam-repository/issues" | ||
license: "BSD-3-Clause" | ||
build: [ | ||
[make] | ||
["cp" "train" "%{bin}%/liblinear_train"] | ||
["cp" "predict" "%{bin}%/liblinear_predict"] | ||
] | ||
depends: [ | ||
"conf-gcc" | ||
"conf-g++" | ||
] | ||
available: os != "win32" | ||
synopsis: "User-space installer for liblinear" | ||
description: """ | ||
Attempt a user-space installation of liblinear. | ||
If successful, liblinear-train and liblinear-predict will be installed | ||
into opam's bin directory. | ||
Note: liblinear is a C++ software which is required by some OCaml | ||
software in opam-repository. | ||
Having an automatic user-space installer in opam-repos. will make those | ||
software easier to install (e.g. even if you don't have root access | ||
to install the liblinear system package). | ||
""" | ||
dev-repo: "git://https://github.com/cjlin1/liblinear.git" | ||
url { | ||
src: "https://github.com/cjlin1/liblinear/archive/refs/tags/v247.tar.gz" | ||
checksum: [ | ||
"sha256=a62c46f20a01a4626260462c905721f5471da4550d38c3b68ffacf0aa64067b4" | ||
] | ||
} |