dannym pushed a commit to branch master
in repository guix.
commit 81abe370075188e718264dd76e7584c12adb482a
Author: Danny Milosavljevic <[email protected]>
Date: Wed May 9 21:45:13 2018 +0200
gnu: liblog: Build library correctly.
* gnu/packages/android.scm (liblog)[arguments]<#:make-flags>: Add LDLIBS.
<#:phases>[ldconfig]: New phase.
---
gnu/packages/android.scm | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm
index 2da0a24..2e5f1d5 100644
--- a/gnu/packages/android.scm
+++ b/gnu/packages/android.scm
@@ -151,11 +151,16 @@ use their packages mostly unmodified in our Android NDK
build system.")
(build-system android-ndk-build-system)
(arguments
`(#:tests? #f ; TODO.
- #:make-flags '("CC=gcc")
+ #:make-flags '("LDLIBS=-lpthread")
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'enter-source
- (lambda _ (chdir "liblog") #t)))))
+ (lambda _ (chdir "liblog") #t))
+ (add-after 'install 'ldconfig
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out")))
+ (symlink "liblog.so.0" (string-append out "/lib/liblog.so"))
+ #t))))))
(home-page "https://developer.android.com/")
(synopsis "Logging library from the Android platform.")
(description "@code{liblog} represents an interface to the volatile Android