gnu: azr3: Fix build.

Fixes <https://bugs.gnu.org/32698>.

* gnu/packages/audio.scm (azr3)[arguments]: Add build phase to reset timestamp
of man page source.
master
Ricardo Wurmus 2018-10-03 23:04:32 +02:00
parent 7d99f015ac
commit ef1f9acf47
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 8 additions and 1 deletions

View File

@ -449,7 +449,14 @@ tools.")
"CXXFLAGS=-std=gnu++11"
"CFLAGS=-std=gnu++11"
(string-append "prefix=" %output)
(string-append "pkgdatadir=" %output "/share/azr3-jack"))))
(string-append "pkgdatadir=" %output "/share/azr3-jack"))
#:phases
(modify-phases %standard-phases
(add-before 'install 'fix-timestamp
(lambda _
(let ((early-1980 315619200)) ; 1980-01-02 UTC
(utime "azr3.1" early-1980 early-1980))
#t)))))
(inputs
`(("gtkmm" ,gtkmm-2)
("lvtk" ,lvtk)