]> git.pld-linux.org Git - packages/rpm-build-macros.git/blobdiff - rpm.macros
- added conditional defines for disable post install compressing docs and
[packages/rpm-build-macros.git] / rpm.macros
index 08f603e262d6c85df1b0e45a5f657b89422b4894..94cfa47574b2cd38422d08fa3e0f76aebe0b3195 100644 (file)
@@ -106,16 +106,19 @@ done \
 #
 # Requires: xargs, find
 #
+%install_post_compress_docs    1
 %__spec_install_post_compress_docs { \
 echo "Compress man and info pages."; \
-%{?verbose:set -x;} \
-for i in /usr/share/man /usr/X11R6/man /usr/share/info; do \
-       if [ -d "$RPM_BUILD_ROOT$i" ]; then \
-               find "$RPM_BUILD_ROOT$i" -name \*.bz2 -print | xargs -r %{__bzip2} -df; \
-               find "$RPM_BUILD_ROOT$i" -name \*.gz -print | xargs -r %{__gzip} -dnf; \
-               find "$RPM_BUILD_ROOT$i" -type f -print | xargs -r %{__gzip} -9nf; \
-       fi; \
-done; \
+       %{?verbose:set -x;} \
+       for i in /usr/share/man /usr/X11R6/man /usr/share/info; do \
+               if [ -d "$RPM_BUILD_ROOT$i" ]; then \
+                       find "$RPM_BUILD_ROOT$i" -name \*.bz2 -print | xargs -r %{__bzip2} -df; \
+                       find "$RPM_BUILD_ROOT$i" -name \*.gz -print | xargs -r %{__gzip} -dnf; \
+%{?nstall_post_compress_docs: \
+                       find "$RPM_BUILD_ROOT$i" -type f -print | xargs -r %{__gzip} -9nf; \
+} \
+               fi; \
+       done; \
 }
 
 #-----------------------------------------------------------------
@@ -123,7 +126,9 @@ done; \
 #
 # Requires: find, awk, strip, cut, xargs
 #
+%install_post_strip    1
 %__spec_install_post_strip {%{!?debug: \
+%{?install_post_strip: \
        %{?verbose:set -x;} \
        echo "Strip executable binaries and shared object files."; \
        filelist=`find $RPM_BUILD_ROOT -type f`; \
@@ -137,6 +142,7 @@ done; \
        if [ -n "$elfsharedlist" ]; then \
                strip --strip-unneeded --remove-section=.note  --remove-section=.comment $elfsharedlist; \
        fi; } \
+} \
 }
 
 #-----------------------------------------------------------------
This page took 0.027037 seconds and 4 git commands to generate.