mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-01 09:02:59 -05:00
gnu: lvtk: Update to 1.2.0-0.a73feab.
* gnu/packages/audio.scm (lvtk): Update to 1.2.0-0.a73feab. [python]: Delete argument. [configure-flags]: Likewise. [inputs]: Replace gtkmm-2 by gtkmm. [license]: Change license to isc.
This commit is contained in:
parent
7cd3a88f27
commit
a9e9d9f41c
1 changed files with 26 additions and 30 deletions
|
@ -11,7 +11,7 @@
|
||||||
;;; Copyright © 2016–2022 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2016–2022 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2018, 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
;;; Copyright © 2018, 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
||||||
;;; Copyright © 2018 okapi <okapi@firemail.cc>
|
;;; Copyright © 2018 okapi <okapi@firemail.cc>
|
||||||
;;; Copyright © 2018, 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2018, 2020, 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
|
;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
|
||||||
;;; Copyright © 2018 Brett Gilio <brettg@gnu.org>
|
;;; Copyright © 2018 Brett Gilio <brettg@gnu.org>
|
||||||
;;; Copyright © 2018, 2019 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2018, 2019 Marius Bakke <mbakke@fastmail.com>
|
||||||
|
@ -2801,37 +2801,33 @@ (define-public lv2-mda-epiano
|
||||||
(description "An LV2 port of the mda EPiano VSTi.")))
|
(description "An LV2 port of the mda EPiano VSTi.")))
|
||||||
|
|
||||||
(define-public lvtk
|
(define-public lvtk
|
||||||
(package
|
;; Use the latest commit, as the latest release was made in 2014 and depends
|
||||||
(name "lvtk")
|
;; on Python 2.
|
||||||
(version "1.2.0")
|
(let ((commit "a73feabe772f9650aa071e6a4df660e549ab7c48")
|
||||||
(source (origin
|
(revision "0"))
|
||||||
(method git-fetch)
|
(package
|
||||||
(uri (git-reference
|
(name "lvtk")
|
||||||
(url "https://github.com/lvtk/lvtk")
|
(version (git-version "1.2.0" revision commit))
|
||||||
(commit version)))
|
(source (origin
|
||||||
(file-name (git-file-name name version))
|
(method git-fetch)
|
||||||
(sha256
|
(uri (git-reference
|
||||||
(base32
|
(url "https://github.com/lvtk/lvtk")
|
||||||
"1b01zvzl70ana6l1kn8fgyr7msnn3c7x61cgw7fdpp50322352p8"))))
|
(commit commit)))
|
||||||
(build-system waf-build-system)
|
(file-name (git-file-name name version))
|
||||||
(arguments
|
(sha256
|
||||||
`(#:tests? #f ; no check target
|
(base32
|
||||||
#:python ,python-2
|
"0scmv8b4jlm88d21dqqchjy98wb93zclc9x960h213gdi871vsaj"))))
|
||||||
#:configure-flags
|
(build-system waf-build-system)
|
||||||
(list (string-append "--boost-includes="
|
(arguments (list #:tests? #f)) ;no check target
|
||||||
(assoc-ref %build-inputs "boost")
|
(inputs (list boost gtkmm lv2))
|
||||||
"/include"))))
|
(native-inputs (list pkg-config))
|
||||||
(inputs
|
(home-page "https://github.com/lvtk/lvtk")
|
||||||
(list boost gtkmm-2 lv2))
|
(synopsis "C++ libraries for LV2 plugins")
|
||||||
(native-inputs
|
(description
|
||||||
(list pkg-config))
|
"The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and
|
||||||
(home-page "https://github.com/lvtk/lvtk")
|
|
||||||
(synopsis "C++ libraries for LV2 plugins")
|
|
||||||
(description
|
|
||||||
"The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and
|
|
||||||
extensions into easy to use C++ classes. It is the successor of
|
extensions into easy to use C++ classes. It is the successor of
|
||||||
lv2-c++-tools.")
|
lv2-c++-tools.")
|
||||||
(license license:gpl3+)))
|
(license license:isc))))
|
||||||
|
|
||||||
(define-public openal
|
(define-public openal
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue