-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathether.opam
More file actions
34 lines (34 loc) · 1.02 KB
/
ether.opam
File metadata and controls
34 lines (34 loc) · 1.02 KB
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
34
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis:
"Ether is a basic parser for ethernet frames that operates over raw sockets via c bindings."
description: """
Ether is a basic parser for ethernet frames that operates over raw sockets via c bindings. It is intended to be used as a learning tool for networking and understanding traffic.
Written in OCaml, it is a simple project developed for my personal understanding of the network stack."""
maintainer: ["William Cooke"]
authors: ["William Cooke"]
license: "BSD-3-Clause"
tags: ["topics" "to describe" "your" "project"]
homepage: "https://github.com/WillC33/ether"
doc: "https://url/to/documentation"
bug-reports: "https://github.com/WillC33/ether/issues"
depends: [
"ocaml"
"dune" {>= "3.16"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/WillC33/ether.git"