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

View file

@ -136,6 +136,11 @@ (define-public aalib
(%current-system))
'("--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="
ncurses)))))))))
(home-page "http://aa-project.sourceforge.net/aalib/")