2002-03-25 23:37:46 +03:00
#!/bin/sh -e
#
# compress_files - compress files helper.
2003-11-08 22:52:04 +03:00
#
2003-11-09 19:30:18 +03:00
# Copyright (C) 2000-2003 Dmitry V. Levin <ldv@altlinux.org>
2002-03-25 23:37:46 +03:00
#
# This program is free software; you can redistribute it and/or modify
# it under the te/bin/rms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
2003-11-09 19:30:18 +03:00
. @RPMCONFIGDIR@/functions
2003-11-09 19:47:45 +03:00
ValidateBuildRoot
2002-03-25 23:37:46 +03:00
2002-08-28 19:06:42 +04:00
RPM_COMPRESS_METHOD="${RPM_COMPRESS_METHOD## }"
RPM_COMPRESS_METHOD="${RPM_COMPRESS_METHOD%% }"
2002-03-25 23:37:46 +03:00
case "$RPM_COMPRESS_METHOD" in
2002-07-21 18:14:51 +04:00
no|none|plain|skip)
2002-03-25 23:37:46 +03:00
exit 0
;;
esac
for f in "$@"; do
case "$RPM_COMPRESS_METHOD" in
gz*)
2008-02-27 19:29:33 +03:00
gzip -9nf "$f"
2002-03-25 23:37:46 +03:00
;;
bz*)
2008-02-27 19:29:33 +03:00
bzip2 -9f "$f"
2002-03-25 23:37:46 +03:00
;;
*)
2015-12-02 21:46:44 +03:00
xz -f "$f"
2002-03-25 23:37:46 +03:00
;;
esac
done