summaryrefslogtreecommitdiffstats
path: root/libraries
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:38:57 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:38:57 -0400
commit1ed58269f0eba2aa0161ef14825c5bc930b2be37 (patch)
tree204311cbb8fd5c81bdaf3bdc9313f8fe9e233e3f /libraries
parent248c51e1bbdda707ff8fcec1021a7ebb55852191 (diff)
downloadslackbuilds-1ed58269f0eba2aa0161ef14825c5bc930b2be37.tar.gz
slackbuilds-1ed58269f0eba2aa0161ef14825c5bc930b2be37.tar.xz
libraries/purple-plugin_pack: Fixed for bash4.
Diffstat (limited to 'libraries')
-rw-r--r--libraries/purple-plugin_pack/purple-plugin_pack.SlackBuild13
1 files changed, 2 insertions, 11 deletions
diff --git a/libraries/purple-plugin_pack/purple-plugin_pack.SlackBuild b/libraries/purple-plugin_pack/purple-plugin_pack.SlackBuild
index 086feb2bf2..52eaa4f98a 100644
--- a/libraries/purple-plugin_pack/purple-plugin_pack.SlackBuild
+++ b/libraries/purple-plugin_pack/purple-plugin_pack.SlackBuild
@@ -55,17 +55,8 @@ cp -a \
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \;
-( cd $PKG
- find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
- xargs strip --strip-unneeded 2> /dev/null || true
- find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
- xargs strip --strip-unneeded 2> /dev/null
- )
-
-( cd $PKG/usr/man
- find . -type f -exec gzip -9 {} \;
- for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
-)
+find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
+ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc