me
/
guix
Archived
1
0
Fork 0

gnu: f2fs-tools: Remove obsolete phase.

* gnu/packages/linux.scm (f2fs-tools)[arguments]: Remove.
(f2fs-tools-1.7)[arguments]: Add #:phases.
Marius Bakke 2022-12-12 17:36:02 +01:00
parent a2c6cc4354
commit 9fc171b62a
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 9 additions and 12 deletions

View File

@ -5947,15 +5947,6 @@ obviously it can be shared with files outside our set).")
(base32
"1ffws8pbpzp9730v0wy5xjas698lnbd2p7wpr2gl4mx45rsay9a5"))))
(build-system gnu-build-system)
(arguments
'(#:phases
(modify-phases %standard-phases
(add-after 'install 'install-headers
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(out-include (string-append out "/include")))
(install-file "include/f2fs_fs.h" out-include)
(install-file "mkfs/f2fs_format_utils.h" out-include)))))))
(native-inputs
(list autoconf automake libtool pkg-config))
(inputs
@ -5988,9 +5979,15 @@ disks and SD cards. This package provides the userland utilities.")
(inputs
(list `(,util-linux "lib") libselinux))
(arguments
(substitute-keyword-arguments (package-arguments f2fs-tools)
((#:configure-flags _ #~'())
#~'("CFLAGS=-fcommon"))))))
'(#:configure-flags '("CFLAGS=-fcommon")
#:phases
(modify-phases %standard-phases
(add-after 'install 'install-headers
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(out-include (string-append out "/include")))
(install-file "include/f2fs_fs.h" out-include)
(install-file "mkfs/f2fs_format_utils.h" out-include)))))))))
(define-public f2fs-tools/static
(static-package