diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2017-11-11 23:10:46 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2017-11-12 07:11:29 +0200 |
commit | 1e2a36e1b0ec087a99aaf553fd69a3bd85961275 (patch) | |
tree | 0d49c966ee0513a12b6925f0de872ffa717fc171 /gnu/packages/video.scm | |
parent | 7e0d513fb9c7e24b1e4a18a29f259bba56636540 (diff) | |
download | patches-1e2a36e1b0ec087a99aaf553fd69a3bd85961275.tar patches-1e2a36e1b0ec087a99aaf553fd69a3bd85961275.tar.gz |
gnu: ffmpeg: Reduce the size of the closure.
* gnu/packages/video.scm (ffmpeg)[arguments]: Add new configure flags to
disable the html man pages and the static libraries.
Diffstat (limited to 'gnu/packages/video.scm')
-rw-r--r-- | gnu/packages/video.scm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index fdc8b02a5a..7a30cb4005 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -713,6 +713,12 @@ standards (MPEG-2, MPEG-4 ASP/H.263, MPEG-4 AVC/H.264, and VC-1/VMW3).") "--enable-runtime-cpudetect" + ;; The HTML pages take 7.2 MiB + "--disable-htmlpages" + + ;; The static libraries are 23 MiB + "--disable-static" + ;; Runtime cpu detection is not implemented on ;; MIPS, so we disable some features. "--disable-mips32r2" |