packages feed

music-suite (empty) → 1.7.0

raw patch · 3 files changed

+72/−0 lines, 3 filesdep +abcnotationdep +lilyponddep +music-articulationbuild-type:Customsetup-changed

Dependencies added: abcnotation, lilypond, music-articulation, music-dynamics, music-dynamics-literal, music-parts, music-pitch, music-pitch-literal, music-preludes, music-score, musicxml2

Files

+ COPYING view
@@ -0,0 +1,26 @@++Copyright (c) 2013, Hans Höglund+All rights reserved.++Redistribution and use in source and binary forms, with or without+modification, are permitted provided that the following conditions are met:+    * Redistributions of source code must retain the above copyright+      notice, this list of conditions and the following disclaimer.+    * Redistributions in binary form must reproduce the above copyright+      notice, this list of conditions and the following disclaimer in the+      documentation and/or other materials provided with the distribution.+    * Neither the name of the <organization> nor the+      names of its contributors may be used to endorse or promote products+      derived from this software without specific prior written permission.++THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE+DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY+DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND+ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.+
+ Setup.lhs view
@@ -0,0 +1,4 @@+#! /usr/bin/env runhaskell++> import Distribution.Simple+> main = defaultMain
+ music-suite.cabal view
@@ -0,0 +1,42 @@++name:                   music-suite+version:                1.7.0+author:                 Hans Hoglund+maintainer:             Hans Hoglund <music-suite-discuss@googlegroups.com>+license:                BSD3+license-file:           COPYING+synopsis:               A set of libraries for composition, analysis and manipulation of music.+category:               Music+tested-with:            GHC+build-type:             Custom+cabal-version:          >= 1.10++description: +    This is a meta-library that imports the [Music Suite](see <http://music-suite.github.io/>).+    .+    It allows users to install all (stable) libraries in the suite as follows:+    .+    > cabal install music-suite+    .+    If you wish to install an exerimental package, simply use @cabal install@ on the specific package instead.+    .+    <<https://raw.githubusercontent.com/hanshoglund/music-docs/master/music-suite-deps.png>>++source-repository head+  type:             	git+  location:         	git://github.com/music-suite/music-suite.git++library+  default-language: Haskell2010+  build-depends:+    music-dynamics-literal    == 1.7.0,+    music-pitch-literal       == 1.7.0,+    abcnotation               == 1.7.0,+    musicxml2                 == 1.7.0,+    lilypond                  == 1.7.0,+    music-score               == 1.7.0,+    music-pitch               == 1.7.0,+    music-dynamics            == 1.7.0,+    music-articulation        == 1.7.0,+    music-parts               == 1.7.0,+    music-preludes            == 1.7.0