parent
f072e9adf5
commit
b16043a361
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
|
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
|
||||||
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
||||||
;;; Copyright © 2015 Alex Kost <alezost@gmail.com>
|
;;; Copyright © 2015 Alex Kost <alezost@gmail.com>
|
||||||
|
@ -158,24 +158,24 @@ streams from live audio.")
|
||||||
(define-public ardour
|
(define-public ardour
|
||||||
(package
|
(package
|
||||||
(name "ardour")
|
(name "ardour")
|
||||||
(version "4.4")
|
(version "4.7")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "git://git.ardour.org/ardour/ardour.git")
|
(url "git://git.ardour.org/ardour/ardour.git")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(snippet
|
(snippet
|
||||||
;; Ardour expects this file to exist at build time. It can be
|
;; Ardour expects this file to exist at build time. The revision
|
||||||
;; created from a git checkout with:
|
;; is the output of
|
||||||
;; ./waf create_stored_revision
|
;; git describe HEAD | sed 's/^[A-Za-z]*+//'
|
||||||
'(call-with-output-file
|
'(call-with-output-file
|
||||||
"libs/ardour/revision.cc"
|
"libs/ardour/revision.cc"
|
||||||
(lambda (port)
|
(lambda (port)
|
||||||
(format port "#include \"ardour/revision.h\"
|
(format port "#include \"ardour/revision.h\"
|
||||||
namespace ARDOUR { const char* revision = \"4.4-210-ga4daf93\" ; }"))))
|
namespace ARDOUR { const char* revision = \"4.7-219-g0e36f8e\" ; }"))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1gnrcnq2ksnh7fsa301v1c4p5dqrbqpjylf02rg3za3ab58wxi7l"))
|
"149gswphz77m3pkzsn2nqbm6yvcfa3fva560bcvjzlgb73f64q5l"))
|
||||||
(file-name (string-append name "-" version))))
|
(file-name (string-append name "-" version))))
|
||||||
(build-system waf-build-system)
|
(build-system waf-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
|
Reference in New Issue