From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:59953) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iT06h-0002GL-Qc for guix-patches@gnu.org; Fri, 08 Nov 2019 03:59:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iT06g-0002Nh-Ic for guix-patches@gnu.org; Fri, 08 Nov 2019 03:59:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:35761) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iT06g-0002Nb-Fv for guix-patches@gnu.org; Fri, 08 Nov 2019 03:59:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iT06g-00052H-Cs for guix-patches@gnu.org; Fri, 08 Nov 2019 03:59:02 -0500 Subject: [bug#38115] [PATCH] gnu: Add dpf-plugins. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:59783) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iT05w-0001dr-7M for guix-patches@gnu.org; Fri, 08 Nov 2019 03:58:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iT05s-0001yg-8f for guix-patches@gnu.org; Fri, 08 Nov 2019 03:58:15 -0500 Received: from mout02.posteo.de ([185.67.36.142]:41365) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iT05s-0001xv-2d for guix-patches@gnu.org; Fri, 08 Nov 2019 03:58:12 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 492482400FF for ; Fri, 8 Nov 2019 09:58:09 +0100 (CET) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 478Z1D1lkJz6tmH for ; Fri, 8 Nov 2019 09:58:08 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable Date: Fri, 08 Nov 2019 09:58:08 +0100 From: Alexandros Theodotou Message-ID: List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38115@debbugs.gnu.org From aebc4cded75e51f6c453a52cae10c9224d9e7df9 Mon Sep 17 00:00:00 2001 From: Alexandros Theodotou Date: Fri, 8 Nov 2019 08:55:22 +0000 Subject: [PATCH] gnu: Add dpf-plugins. * gnu/packages/music.scm: (dpf-plugins): New variable. --- gnu/packages/music.scm | 47 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index a30765e87f..e78b01d4a3 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -24,6 +24,7 @@ ;;; Copyright =C2=A9 2019 Jakob L. Kreuze ;;; Copyright =C2=A9 2019 raingloom ;;; Copyright =C2=A9 2019 David Wilson +;;; Copyright =C2=A9 2019 Alexandros Theodotou ;;; ;;; This file is part of GNU Guix. ;;; @@ -4699,3 +4700,49 @@ You can also get metadata about the playing track=20 such as the artist and title for integration into status line generators or other command-line=20 tools.") (home-page "https://github.com/altdesktop/playerctl") (license license:lgpl3+))) + +(define-public dpf-plugins + (package + (name "dpf-plugins") + (version "1.3") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/DISTRHO/DPF-Plugins.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0a89hiqflg8y55aphiff64g9jli88lxzwzw4grfk48n7r1mp49hf")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no "check" target + #:make-flags + (list (string-append "PREFIX=3D" (assoc-ref %outputs "out"))) + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'skip-dssi-binaries + (lambda _ + (substitute* "Makefile" + (("cp -r bin.*-dssi.*$") ":;\n")) + #t)) + (add-before 'build 'set-CC-variable + (lambda _ (setenv "CC" "gcc") #t)) + (delete 'configure)))) + (inputs + `(("cairo" ,cairo) + ("dssi" ,dssi) + ("mesa" ,mesa))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("lv2" ,lv2))) + (home-page "https://github.com/DISTRHO/DPF-Plugins") + (synopsis "Audio plugin collection") + (description "Collection of DPF-based audio plugins in LADSPA,=20 DSSI, LV2 and VST2 +formats. This package includes the following plugins: glBars, Kars,=20 Max-Gen examples +(MaBitcrush, MaFreeverb, MaGigaverb, MaPitchshift), Mini-Series=20 (3BandEQ. 3BandSplitter, +PingPongPan), ndc-Plugs (Amplitude Imposer, Cycle Shifter, Soul Force),=20 MVerb, Nekobi, +and ProM.") + (license `(license:isc license:gpl3 license:lgpl3 license:mit=20 license:gpl2)))) --=20 2.24.0