]> git.pld-linux.org Git - packages/rpm.git/blobdiff - rpm.macros
- added Development/Languages/Sheme.
[packages/rpm.git] / rpm.macros
index d5d5f33ece22e221f127419ab7cc4524056d70c6..744f70d42bdde9a46a9aab87abf4d09bbd0ee38f 100644 (file)
@@ -72,7 +72,7 @@ else \
     ); \
   fi \
 done \
-  %{-C:${_mydir}}%{!-C:.}/%{configure}
+  %{-C:${_mydir}}%{!-C:.}/%{configure} \
   %{-C:cd ${_mydir}; unset _mydir}
 
 # Location of autoconf macros
@@ -106,22 +106,29 @@ done \
 #
 # Requires: xargs, find
 #
+#%no_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" -type f -print | xargs %{__gzip} -9nf; \
-       fi; \
-done; \
+%{!?no_install_post_compress_docs: \
+       %{?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; \
+} \
 }
 
 #-----------------------------------------------------------------
-# find and gzip all files in %{_mandir} and %{infodir}
+# Strip executable binaries and shared object files
 #
 # Requires: find, awk, strip, cut, xargs
 #
+#%no_install_post_strip        1
 %__spec_install_post_strip {%{!?debug: \
+%{!?no_install_post_strip: \
        %{?verbose:set -x;} \
        echo "Strip executable binaries and shared object files."; \
        filelist=`find $RPM_BUILD_ROOT -type f`; \
@@ -135,6 +142,7 @@ done; \
        if [ -n "$elfsharedlist" ]; then \
                strip --strip-unneeded --remove-section=.note  --remove-section=.comment $elfsharedlist; \
        fi; } \
+} \
 }
 
 #-----------------------------------------------------------------
@@ -146,3 +154,6 @@ done; \
 %{__spec_install_post_strip} \
 %{__spec_install_post_compress_docs} \
 }
+
+%_source_payload        w9.gzdio
+%_binary_payload        w9.bzdio
This page took 0.02397 seconds and 4 git commands to generate.