diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-02-16 14:05:05 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-02-16 22:46:38 +0100 |
commit | f6c8ba3172e20c65e0d07ec2a5208f9de069ea34 (patch) | |
tree | 9d3a093ac6a4d0a12186dd5dda597c186e5cd2cd /gnu/packages | |
parent | 1f14453eedfede4626a78321c66a009c9997bee4 (diff) |
gnu: noise-repellent: Update to 0.1.5.
* gnu/packages/audio.scm (noise-repellent): Update to 0.1.5.
[build-system]: Switch to meson-build-system.
[arguments]: Remove GNU build system flags & set installation prefix.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/audio.scm | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 7b46e2cb6f..3cb32d2e0f 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -3523,7 +3523,7 @@ the Snd sources), Ruby, or Forth.") (define-public noise-repellent (package (name "noise-repellent") - (version "0.1.4") + (version "0.1.5") (source (origin (method git-fetch) (uri (git-reference @@ -3532,16 +3532,12 @@ the Snd sources), Ruby, or Forth.") (file-name (string-append name "-" version "-checkout")) (sha256 (base32 - "0rd3dlmk3vivjmcr6x2x860y0j1d49c2j95j6ny50v184mwvn11j")))) - (build-system gnu-build-system) + "0hb89x9i2knzan46q4nwscf5zmnb2nwf4w13xl2c0y1mx1ls1mwl")))) + (build-system meson-build-system) (arguments - `(#:make-flags - (list "CC=gcc" - (string-append "PREFIX=" (assoc-ref %outputs "out"))) - #:tests? #f ; there are none - #:phases - (modify-phases %standard-phases - (delete 'configure)))) + `(#:configure-flags + (list (string-append "--prefix=" (assoc-ref %outputs "out") + "/lib/lv2")))) (inputs `(("lv2" ,lv2) ("fftwf" ,fftwf))) |