mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add libgig.
* gnu/packages/music.scm (libgig): New variable.
This commit is contained in:
parent
8a9cffb202
commit
e87cb754a6
1 changed files with 29 additions and 0 deletions
|
@ -1683,6 +1683,35 @@ (define-public yoshimi
|
|||
improves on support for JACK features, such as JACK MIDI.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public libgig
|
||||
(package
|
||||
(name "libgig")
|
||||
(version "4.0.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://download.linuxsampler.org/packages/"
|
||||
"libgig-" version ".tar.bz2"))
|
||||
(sha256
|
||||
(base32
|
||||
"1wr8mwjmqpnyz6bx9757lspiii1zzn8zfbqsvn2ipzpgqkxv6kaz"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("libuuid" ,util-linux)
|
||||
("libsndfile" ,libsndfile)))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(home-page "http://linuxsampler.org/libgig/")
|
||||
(synopsis "C++ library for working with Gigasampler (.gig) files")
|
||||
(description
|
||||
"Libgig is a C++ library for loading, modifying existing and creating new
|
||||
Gigasampler (.gig) files and DLS (Downloadable Sounds) Level 1/2 files, KORG
|
||||
sample based instruments (.KSF and .KMP files), SoundFont v2 (.sf2) files and
|
||||
AKAI sampler data. The package includes a couple of command line tools based
|
||||
on the library.")
|
||||
;; The library and tools are released under the GPL, except the AKAI
|
||||
;; classes which are released under the LGPL.
|
||||
(license (list license:gpl2+ license:lgpl2.1+))))
|
||||
|
||||
(define-public jack-keyboard
|
||||
(package
|
||||
(name "jack-keyboard")
|
||||
|
|
Loading…
Reference in a new issue