guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: fastboot: Simplify package.


From: Danny Milosavljevic
Subject: 02/02: gnu: fastboot: Simplify package.
Date: Wed, 9 May 2018 22:15:42 -0400 (EDT)

dannym pushed a commit to branch master
in repository guix.

commit 8297f01ee0094005c1d40923f605360a15030628
Author: Danny Milosavljevic <address@hidden>
Date:   Thu May 10 04:13:00 2018 +0200

    gnu: fastboot: Simplify package.
    
    * gnu/packages/android.scm (fastboot)[source]: Use 
android-platform-system-core.
    [arguments]<#:phases>[unpack]: Remove.
    <#:phases>[enter-source]: Modify.
    <#:phases>[patch-source]: New phase.
    [native-inputs]: Remove core, extras.
---
 gnu/packages/android.scm | 23 ++++++++---------------
 1 file changed, 8 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm
index 812898c..d09cd63 100644
--- a/gnu/packages/android.scm
+++ b/gnu/packages/android.scm
@@ -586,25 +586,20 @@ Android core.")
   (package
     (name "fastboot")
     (version (android-platform-version))
-    (source #f)
+    (source (android-platform-system-core version))
     (build-system android-ndk-build-system)
     (arguments
      `(#:make-flags (list "CXXFLAGS=-std=gnu++11")
        #:phases
        (modify-phases %standard-phases
-         (replace 'unpack
-           (lambda* (#:key inputs #:allow-other-keys)
-             (mkdir-p "core")
-             (with-directory-excursion "core"
-               (invoke "tar" "axf" (assoc-ref inputs "core") 
"--strip-components=1")
-               (substitute* "fastboot/Android.mk"
-                (("libext4_utils_host") "libext4_utils_host libselinux 
libpcre")))
-             (copy-recursively (assoc-ref inputs "extras") "extras"
-                               #:keep-mtime? #t)
-             #t))
          (add-after 'unpack 'enter-source
            (lambda _
-             (chdir "core/fastboot")
+             (chdir "fastboot")
+             #t))
+         (add-after 'enter-source 'patch-source
+           (lambda _
+             (substitute* "Android.mk"
+              (("libext4_utils_host") "libext4_utils_host libselinux libpcre"))
              #t))
          (replace 'install
            (lambda* (#:key outputs #:allow-other-keys)
@@ -629,9 +624,7 @@ Android core.")
        ("mkbootimg" ,mkbootimg)
        ("zlib" ,zlib)))
     (native-inputs
-     `(("core" ,(android-platform-system-core version))
-       ("extras" ,(android-platform-system-extras version))
-       ("xz" ,xz)))
+     `(("xz" ,xz)))
     (home-page "https://developer.android.com/studio/command-line/";)
     (synopsis "Android image flasher")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]