gnu: ardour: Generate freedesktop files.
* gnu/packages/audio.scm (ardour)[arguments]: Add "--freedesktop" configure flag. [native-inputs]: Add itstool and gettext-minimal.
This commit is contained in:
parent
461160c530
commit
ba5c85679d
|
@ -208,7 +208,8 @@ namespace ARDOUR { const char* revision = \"" version "\" ; }")))))
|
||||||
(build-system waf-build-system)
|
(build-system waf-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags '("--cxx11" ; required by gtkmm
|
`(#:configure-flags '("--cxx11" ; required by gtkmm
|
||||||
"--no-phone-home") ; don't contact ardour.org
|
"--no-phone-home" ; don't contact ardour.org
|
||||||
|
"--freedesktop") ; install .desktop file
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after
|
(add-after
|
||||||
|
@ -256,6 +257,8 @@ namespace ARDOUR { const char* revision = \"" version "\" ; }")))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("perl" ,perl)
|
`(("perl" ,perl)
|
||||||
("cppunit" ,cppunit)
|
("cppunit" ,cppunit)
|
||||||
|
("itstool" ,itstool)
|
||||||
|
("gettext" ,gettext-minimal)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
(home-page "http://ardour.org")
|
(home-page "http://ardour.org")
|
||||||
(synopsis "Digital audio workstation")
|
(synopsis "Digital audio workstation")
|
||||||
|
|
Loading…
Reference in New Issue