gnu: btrfs-progs: Add "static" output.

* gnu/packages/linux.scm (btrfs-progs)[outputs]: New field.
[inputs]: Add "static" outputs of util-linux for libuuid and libblkid.
[arguments]: Add 'build-static' and 'install-static' phases.

Signed-off-by: Leo Famulari <leo@famulari.name>
master
Tobias Geerinckx-Rice 2016-04-03 21:36:29 +02:00 committed by Leo Famulari
parent dd581e9ab3
commit 7cad981dfc
1 changed files with 15 additions and 1 deletions

View File

@ -2509,12 +2509,26 @@ and copy/paste text in the console and in xterm.")
(base32
"1z5882zx9jx02vyg067siws0irsl8pg37myx17hr4imn9ypf6r4r"))))
(build-system gnu-build-system)
(outputs '("out"
"static")) ; static versions of binaries in "out" (~16MiB!)
(arguments
'(#:test-target "test"
'(#:phases (modify-phases %standard-phases
(add-after 'build 'build-static
(lambda _ (zero? (system* "make" "static"))))
(add-after 'install 'install-static
(let ((staticbin (string-append (assoc-ref %outputs "static")
"/bin")))
(lambda _
(zero? (system* "make"
(string-append "bindir=" staticbin)
"install-static"))))))
#:test-target "test"
#:parallel-tests? #f)) ; tests fail when run in parallel
(inputs `(("e2fsprogs" ,e2fsprogs)
("libblkid" ,util-linux)
("libblkid:static" ,util-linux "static")
("libuuid" ,util-linux)
("libuuid:static" ,util-linux "static")
("zlib" ,zlib)
("lzo" ,lzo)))
(native-inputs `(("pkg-config" ,pkg-config)