-
Notifications
You must be signed in to change notification settings - Fork 0
/
yara.opam
34 lines (33 loc) · 1.05 KB
/
yara.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
opam-version: "2.0"
name: "yara"
version: "0.2"
maintainer: "Anton Kochkov <[email protected]>"
homepage: "https://github.com/XVilka/yara-ocaml"
bug-reports: "https://github.com/XVilka/yara-ocaml/issues"
license: "MIT"
dev-repo: "git+https://github.com/XVilka/yara-ocaml.git"
build: ["dune" "build" "-p" name "-j" jobs]
depends: [
"ocaml" {>= "4.02.3"}
"dune"
"ocaml-migrate-parsetree" {build}
"ppx_deriving" {>= "4.2.0"}
"core" {>= "v0.9.0" & < "v0.14"}
"ctypes" {>= "0.13.0"}
"ctypes-foreign"
]
depexts: [
["libyara-dev"] {os-family = "debian"}
["libyara-devel"] {os-distribution = "opensuse"}
["epel-release" "yara-devel"] {os-distribution = "centos"}
["yara-devel"] {os-distribution = "fedora"}
["yara"] {os-distribution = "alpine"}
["yara"] {os-distribution = "arch"}
["yara"] {os-distribution = "gentoo"}
["yara"] {os = "macos" & os-distribution = "homebrew"}
]
synopsis: "OCaml bindings for YARA matching engine"
description: """
Provides a Ctypes bindings for
YARA matching engine"""
authors: "Anton Kochkov <[email protected]>"