gnu: totem: Do not build static libraries.

* gnu/packages/gnome.scm (totem)[arguments]: Pass "--disable-static".
This reduces the size of Totem from 11 MiB to 9 MiB.
master
Ludovic Courtès 2017-07-19 11:09:04 +02:00
parent 644e5f17df
commit a388c951dd
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 5 additions and 1 deletions

View File

@ -3495,7 +3495,11 @@ for application developers.")
(arguments
`(;; Disable automatic GStreamer plugin installation via PackageKit and
;; all that.
#:configure-flags '("--disable-easy-codec-installation")
#:configure-flags '("--disable-easy-codec-installation"
;; Do not build .a files for the plugins, it's
;; completely useless. This saves 2 MiB.
"--disable-static")
#:phases
(modify-phases %standard-phases