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
|
@ -256,8 +256,10 @@ to a Unix shell that can run commands on the connected device or emulator.")
|
||||||
(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"))
|
||||||
(bin (string-append out "/bin")))
|
(bin (string-append out "/bin"))
|
||||||
|
(include (string-append out "/include")))
|
||||||
(install-file "mkbootimg" bin)
|
(install-file "mkbootimg" bin)
|
||||||
|
(install-file "bootimg.h" include)
|
||||||
#t))))))
|
#t))))))
|
||||||
(home-page "https://developer.android.com/studio/command-line/adb.html")
|
(home-page "https://developer.android.com/studio/command-line/adb.html")
|
||||||
(synopsis "Tool to create Android boot images")
|
(synopsis "Tool to create Android boot images")
|
||||||
|
|
Loading…
Reference in New Issue