rpm-build/scripts/strip_files.in
Alexey Tourbin 3223ba1c5d brp-strip: select ELF files and .a archives with single file(1) invocation
Tested with gnome-icon-themes-oxygen-refit2-2.3-alt1.src.rpm.
Old result: 25 seconds, new result: 3 seconds.
2010-03-27 00:00:28 +03:00

99 lines
1.9 KiB
Bash
Executable File

#!/bin/sh -ef
#
# strip_files - strip files helper.
#
# Copyright (C) 2000-2004 Dmitry V. Levin <ldv@altlinux.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms 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
#
. @RPMCONFIGDIR@/functions
ValidateBuildRoot
DoStrip()
{
f="$1"
shift
local opts=
[ -n "$STRIP_FORCED" ] || opts="-p -R .comment $*"
strip $opts $STRIP_FORCED_OPTS "$f"
}
rc=0
StripFile()
{
f="$1"
if [ ! -f "$f" ]; then
Info "$f: file unavailable"
rc=1
continue
fi
fname="${f#$RPM_BUILD_ROOT}"
fname="${fname#.}"
if [ -n "$RPM_STRIP_SKIPLIST" ]; then
for skip in $RPM_STRIP_SKIPLIST; do
if [ -z "${fname##$skip}" ]; then
continue 2
fi
done
fi
t="$(file -b "$f")"
if [ -z "${t/*ELF*executable,*/}" ]; then
if [ -n "$STRIP_EXECUTABLE" ]; then
DoStrip "$f"
fi
continue
fi
if [ -z "${t/*ELF*relocatable,*/}" ]; then
if [ -n "$STRIP_RELOCATABLE" ]; then
DoStrip "$f" --strip-unneeded
fi
continue
fi
if [ -z "${t/*ELF*shared object,*/}" ]; then
if [ -n "$STRIP_SHARED" ]; then
DoStrip "$f" --strip-unneeded
fi
continue
fi
if [ -z "${t/*current ar archive/}" ]; then
if [ -n "$STRIP_STATIC" ]; then
DoStrip "$f" --strip-unneeded
fi
continue
fi
}
if [ $# -gt 0 ]; then
for f; do
StripFile "$f"
done
else
while read -r f; do
StripFile "$f"
done
fi
exit $rc