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 35 36 37
|
opam-version: "2.0"
name: "headache"
version: "1.08"
license: "LGPL-2.0-only"
synopsis: "Automatic generation of files headers"
description: """
Lightweight tool for managing headers in source code files. It can
update in any source code files (OCaml, C, XML et al).
"""
authors: [
"Vincent Simonet"
# contributors
"Patrick Baudin"
"Mehdi Dogguy"
"André Maroneze"
"François Pottier"
"Virgile Prevosto"
"Ralf Treinen"
]
maintainer: "frama-ci-bot@frama-c.com"
homepage: "https://github.com/Frama-C/headache/"
bug-reports: "https://github.com/Frama-C/headache/issues"
dev-repo: "git+https://github.com/Frama-C/headache.git"
depends: [
"ocaml" {>= "4.13"}
"camomile" {>= "2.0.0"}
"dune" {>= "3.4"}
]
build: [
[ "dune" "build" "-p" name "-j" jobs ]
]
|