-
Notifications
You must be signed in to change notification settings - Fork 1
/
llama.opam
37 lines (37 loc) · 1.25 KB
/
llama.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
35
36
37
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Language for Live Audio Module Arrangement"
description:
"Libraries for declaratively building software-defined modular synthesizers. Contains definitions of common modules for generating and processing audio waveforms such as oscillators, filters, envelope generators, sequencers and clocks. This package also includes a mechanism for playing sounds generated by synthesizer components through your speakers."
maintainer: ["https://github.com/gridbugs/llama/issues"]
authors: ["Stephen Sherratt"]
license: "MIT"
homepage: "https://github.com/gridbugs/llama"
bug-reports: "https://github.com/gridbugs/llama/issues"
depends: [
"dune" {>= "3.0"}
"llama_core" {= version}
"ocaml" {>= "4.13.0" & < "5.0.0"}
"lwt" {>= "5.4"}
"conf-rust-2021" {build}
"conf-pkg-config" {build & os = "linux"}
"dune-configurator" {build}
"conf-alsa" {os = "linux"}
"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/gridbugs/llama.git"
available: arch != "arm32" & arch != "ppc64" & arch != "s390x" & arch != "x86_32"