diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-03-10 09:19:38 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-03-17 08:25:21 +0100 |
commit | c04b4e7aea1563d0a944f4592aea48f5faf03419 (patch) | |
tree | 33e63b49fda3f132c7d5576530f63f1fb500e5a9 /gnu/packages | |
parent | 75f45d16d4be9863887a02df8c6c96ea735c7115 (diff) | |
download | patches-c04b4e7aea1563d0a944f4592aea48f5faf03419.tar patches-c04b4e7aea1563d0a944f4592aea48f5faf03419.tar.gz |
gnu: Add STE plugins.
* gnu/packages/audio.scm (ste-plugins): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/audio.scm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index ce658837bc..b902e0b37e 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -567,6 +567,42 @@ in systems that allow automation of plugin control ports, such as Ardour, or for stage use.") (license license:gpl2+))) +(define-public ste-plugins + (package + (name "ste-plugins") + (version "0.0.2") + (source (origin + (method url-fetch) + (uri (string-append + "http://kokkinizita.linuxaudio.org" + "/linuxaudio/downloads/STE-plugins-" + version ".tar.bz2")) + (sha256 + (base32 + "0s3c9w5xihs87cnd1lh9xgj3maabjdyh6bl766qp5lhkg3ax8zy6")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no "check" target + #:phases + (modify-phases %standard-phases + ;; no configure script + (delete 'configure) + (add-before 'install 'prepare-target-directory + (lambda* (#:key outputs #:allow-other-keys) + (mkdir-p (string-append (assoc-ref outputs "out") "/lib/ladspa")) + #t)) + (add-after 'unpack 'override-target-directory + (lambda* (#:key outputs #:allow-other-keys) + (substitute* "Makefile" + (("/usr") (assoc-ref outputs "out"))) + #t))))) + (home-page "http://kokkinizita.linuxaudio.org") + (synopsis "LADSPA stereo width plugin") + (description + "This package provides a LADSPA plugin to manipulate the stereo width of +audio signals.") + (license license:gpl2+))) + (define-public vco-plugins (package (name "vco-plugins") |