mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: mkbootimg: Install "bootimg.h".
* gnu/packages/android.scm (mkbootimg)[arguments]<#:phases>[install]: Install "bootimg.h".
This commit is contained in:
parent
f6e75b0db2
commit
3724d37577
1 changed files with 3 additions and 1 deletions
|
@ -256,8 +256,10 @@ (define-public mkbootimg
|
|||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(bin (string-append out "/bin")))
|
||||
(bin (string-append out "/bin"))
|
||||
(include (string-append out "/include")))
|
||||
(install-file "mkbootimg" bin)
|
||||
(install-file "bootimg.h" include)
|
||||
#t))))))
|
||||
(home-page "https://developer.android.com/studio/command-line/adb.html")
|
||||
(synopsis "Tool to create Android boot images")
|
||||
|
|
Loading…
Reference in a new issue