mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: libcutils: Install header files.
* gnu/packages/android.scm (libcutils)[arguments]<#:phases>[install]: Install header files.
This commit is contained in:
parent
cc39d592d9
commit
cbf83e0090
1 changed files with 4 additions and 1 deletions
|
@ -210,10 +210,13 @@ (define libcutils
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(lib (string-append out "/lib")))
|
(lib (string-append out "/lib"))
|
||||||
|
(include (string-append out "/include")))
|
||||||
(install-file "libcutils.so.0" lib)
|
(install-file "libcutils.so.0" lib)
|
||||||
(with-directory-excursion lib
|
(with-directory-excursion lib
|
||||||
(symlink "libcutils.so.0" "libcutils.so"))
|
(symlink "libcutils.so.0" "libcutils.so"))
|
||||||
|
(copy-recursively "../include/cutils"
|
||||||
|
(string-append include "/cutils"))
|
||||||
#t))))))
|
#t))))))
|
||||||
(home-page "https://developer.android.com/")
|
(home-page "https://developer.android.com/")
|
||||||
(synopsis "Android platform c utils library")
|
(synopsis "Android platform c utils library")
|
||||||
|
|
Loading…
Reference in a new issue