[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 5/5] gnu: libextractor: Move .a files to output "static".
From: |
contact . ng0 |
Subject: |
[PATCH 5/5] gnu: libextractor: Move .a files to output "static". |
Date: |
Thu, 9 Feb 2017 13:37:04 +0000 |
From: ng0 <address@hidden>
* gnu/packages/gnunet.scm (libextractor): Move .a files to "static" output.
[arguments](phases): New phase for moving .a files to output "static".
---
gnu/packages/gnunet.scm | 19 ++++++++++++++++++-
1 file changed, 18 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm
index f7da12ad5..a4514a7f4 100644
--- a/gnu/packages/gnunet.scm
+++ b/gnu/packages/gnunet.scm
@@ -115,13 +115,30 @@
("zlib" ,zlib)))
(native-inputs
`(("pkg-config" ,pkg-config)))
+ (outputs '("out"
+ "static")) ; 396 KiB .a files
(arguments
`(#:configure-flags
(list (string-append "--with-ltdl="
(assoc-ref %build-inputs "libltdl"))
(string-append "--with-tidy="
(assoc-ref %build-inputs "tidy-html")))
- #:parallel-tests? #f))
+ #:parallel-tests? #f
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'install 'move-static-libraries
+ (lambda* (#:key outputs #:allow-other-keys)
+ ;; Move static libraries to the "static" output.
+ (let* ((out (assoc-ref outputs "out"))
+ (lib (string-append out "/lib"))
+ (static (assoc-ref outputs "static"))
+ (slib (string-append static "/lib")))
+ (mkdir-p slib)
+ (for-each (lambda (file)
+ (install-file file slib)
+ (delete-file file))
+ (find-files lib "\\.a$"))
+ #t))))))
(synopsis "Library to extract meta-data from media files")
(description
"GNU libextractor is a library for extracting metadata from files. It
--
2.11.1
- Re: libextractor dependencies: libmp4v2, tidy-html, libsmf., Kei Kebreau, 2017/02/08
- Re: libextractor dependencies: libmp4v2, tidy-html, libsmf., ng0, 2017/02/09
- libextractor changes, v2, contact . ng0, 2017/02/09
- [PATCH 4/5] gnu: libextractor: Add dependencies., contact . ng0, 2017/02/09
- [PATCH 2/5] gnu: Add tidy-html., contact . ng0, 2017/02/09
- [PATCH 1/5] gnu: Add libmp4v2., contact . ng0, 2017/02/09
- [PATCH 5/5] gnu: libextractor: Move .a files to output "static".,
contact . ng0 <=
- [PATCH 3/5] gnu: Add libsmf., contact . ng0, 2017/02/09
- Re: libextractor changes, v2, Kei Kebreau, 2017/02/09