gnu: aalib: Support aarch64.

* gnu/packages/video.scm (aalib)[arguments]: Modify custom configure
phase to declare host type on aarch64.
This commit is contained in:
Efraim Flashner 2017-02-21 20:56:45 +02:00
parent fd61591850
commit 6446555876
No known key found for this signature in database
GPG Key ID: F4C1D3917EACEE93
1 changed files with 5 additions and 0 deletions

View File

@ -136,6 +136,11 @@
(%current-system)) (%current-system))
'("--host=mips64el-unknown-linux-gnu") '("--host=mips64el-unknown-linux-gnu")
'()) '())
;; The same is also true with aarch64.
,@(if (string=? "aarch64-linux"
(%current-system))
'("--host=aarch64-unknown-linux-gnu")
'())
(string-append "--with-ncurses=" (string-append "--with-ncurses="
ncurses))))))))) ncurses)))))))))
(home-page "http://aa-project.sourceforge.net/aalib/") (home-page "http://aa-project.sourceforge.net/aalib/")