guix-commits
[Top][All Lists]
Advanced

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

09/12: gnu: Add android-f2fs-utils.


From: Danny Milosavljevic
Subject: 09/12: gnu: Add android-f2fs-utils.
Date: Wed, 9 May 2018 16:34:58 -0400 (EDT)

dannym pushed a commit to branch master
in repository guix.

commit 055e6fb3eb12b863ce6176f682fee62a36387b24
Author: Danny Milosavljevic <address@hidden>
Date:   Wed May 9 20:04:33 2018 +0200

    gnu: Add android-f2fs-utils.
    
    * gnu/packages/android.scm (android-f2fs-utils): New variable.
---
 gnu/packages/android.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/android.scm b/gnu/packages/android.scm
index 6e44369..21b0c7c 100644
--- a/gnu/packages/android.scm
+++ b/gnu/packages/android.scm
@@ -507,6 +507,35 @@ that is safe to use for user space.  It also includes
 Android core.")
     (license license:asl2.0)))
 
+(define-public android-f2fs-utils
+  (package
+    (name "android-f2fs-utils")
+    (version (android-platform-version))
+    (source (android-platform-system-extras version))
+    (build-system android-ndk-build-system)
+    (arguments
+     `(#:tests? #f ; TODO.
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'enter-source
+           (lambda _ (chdir "f2fs_utils") #t))
+         (add-after 'install 'install-headers
+           (lambda* (#:key inputs outputs #:allow-other-keys)
+             (copy-recursively "." (string-append (assoc-ref outputs "out")
+                                                  "/include"))
+             #t)))))
+    (inputs
+     `(("f2fs-tools" ,f2fs-tools-1.7)
+       ("android-libselinux" ,android-libselinux)
+       ("android-libsparse" ,android-libsparse)
+       ("libcutils" ,libcutils)
+       ("zlib" ,zlib)))
+    (home-page "https://developer.android.com/";)
+    (synopsis "Android ext4 utils")
+    (description "@code{android-ext4-utils} is a library in common use by the
+Android core.")
+    (license license:asl2.0)))
+
 (define-public android-udev-rules
   (package
     (name "android-udev-rules")



reply via email to

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