This repository has been archived by the owner on Apr 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathlilypond.cabal
executable file
·54 lines (48 loc) · 2.08 KB
/
lilypond.cabal
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: lilypond
version: 1.9.2
author: Hans Hoglund
maintainer: Hans Hoglund <[email protected]>
license: BSD3
license-file: COPYING
synopsis: Bindings to Lilypond
category: Music
tested-with: GHC
build-type: Simple
cabal-version: >= 1.10
description:
This package contains a terse Haskell representation of (a subset of) Lilypond
expressions and a pretty-printer for such expressions. They can be used to generate
musical notation.
source-repository head
type: git
location: git://github.com/music-suite/lilypond.git
library
build-depends: base >= 4 && < 5,
semigroups >= 0.13.0.1 && < 1,
vector-space >= 0.10.2 && < 1,
process >= 1.2 && < 1.3,
data-default,
prettify,
music-pitch == 1.9.2,
music-dynamics == 1.9.2
exposed-modules: Data.Music.Lilypond
Data.Music.Lilypond.Pitch
Data.Music.Lilypond.Dynamics
Data.Music.Lilypond.Value
Data.Music.Lilypond.IO
hs-source-dirs: src
default-language: Haskell2010
test-suite "lilypond-tests"
build-depends: base >= 4 && < 5,
semigroups >= 0.13.0.1 && < 1,
vector-space >= 0.10.2 && < 1,
process >= 1.2 && < 1.3,
data-default,
prettify,
music-pitch == 1.9.2,
music-dynamics == 1.9.2,
lilypond
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
default-language: Haskell2010