me
/
guix
Archived
1
0
Fork 0

gnu: tiled: Use 'modify-phases'.

* gnu/packages/game-development.scm (tiled)[arguments]: Use 'modify-phases'.
master
Efraim Flashner 2016-03-01 13:34:12 +02:00
parent e8ea01d902
commit d06fc008bd
1 changed files with 6 additions and 7 deletions

View File

@ -142,13 +142,12 @@ provide connectivity for client applications written in any language.")
("zlib" ,zlib)))
(arguments
'(#:phases
(alist-replace
'configure
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(system* "qmake"
(string-append "PREFIX=" out))))
%standard-phases)))
(modify-phases %standard-phases
(replace 'configure
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(system* "qmake"
(string-append "PREFIX=" out))))))))
(home-page "http://www.mapeditor.org/")
(synopsis "Tile map editor")
(description