diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:32:09 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:32:09 -0400 |
commit | 0bfd6f79d0c1706cedeb7ddea911cab7d908c739 (patch) | |
tree | 9685a39323a68d1c38f5f075719c0df96f8b56ae /desktop/plasma-applet-daisy | |
parent | 709ad13380eee4297b350cfe199eb8225c284b9c (diff) | |
download | slackbuilds-0bfd6f79d0c1706cedeb7ddea911cab7d908c739.tar.gz |
desktop/plasma-applet-daisy: Fixed for bash4.
Diffstat (limited to 'desktop/plasma-applet-daisy')
-rw-r--r-- | desktop/plasma-applet-daisy/plasma-applet-daisy.SlackBuild | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/desktop/plasma-applet-daisy/plasma-applet-daisy.SlackBuild b/desktop/plasma-applet-daisy/plasma-applet-daisy.SlackBuild index b640514464..120e9e9dbc 100644 --- a/desktop/plasma-applet-daisy/plasma-applet-daisy.SlackBuild +++ b/desktop/plasma-applet-daisy/plasma-applet-daisy.SlackBuild @@ -46,17 +46,8 @@ cmake \ make make install DESTDIR=$PKG -( 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/usr/doc/$PRGNAM-$VERSION cp -a AUTHORS CHANGELOG COPYING INSTALL README TODO $PKG/usr/doc/$PRGNAM-$VERSION |