-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsoundml.opam
34 lines (34 loc) · 992 Bytes
/
soundml.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
34
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "An OCaml library to embed sound processing in your applications."
description:
"SoundML is a library built on top of Owl to analyse sounds files. It can read, write audio, extract various features from audio files and much more."
maintainer: ["Gabriel Santamaria <[email protected]>"]
authors: ["Gabriel Santamaria <[email protected]>"]
license: "Apache-2.0"
tags: ["sound" "owl" "ffmpeg" "gabyfle"]
homepage: "https://github.com/gabyfle/soundml"
doc: "https://soundml.gabyfle.dev"
bug-reports: "https://github.com/gabyfle/soundml/issues"
depends: [
"ocaml" {>= "5.2.0"}
"dune" {>= "3.15"}
"owl" {>= "1.1"}
"ffmpeg" {>= "1.2.1"}
"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/gabyfle/soundml.git"