diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:40:38 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:40:38 -0400 |
commit | 211a80b894f103429d8b78d6840628efe633f436 (patch) | |
tree | 81593e8d788883f82e8e45623c049abc1d9c71a3 /multimedia/dvdstyler/dvdstyler.SlackBuild | |
parent | 76ee575c88627809af239ac9976619d166b140f4 (diff) | |
download | slackbuilds-211a80b894f103429d8b78d6840628efe633f436.tar.gz |
multimedia/dvdstyler: Fixed for bash4.
Diffstat (limited to 'multimedia/dvdstyler/dvdstyler.SlackBuild')
-rw-r--r-- | multimedia/dvdstyler/dvdstyler.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/multimedia/dvdstyler/dvdstyler.SlackBuild b/multimedia/dvdstyler/dvdstyler.SlackBuild index 281533deeb..3f92cf7e4c 100644 --- a/multimedia/dvdstyler/dvdstyler.SlackBuild +++ b/multimedia/dvdstyler/dvdstyler.SlackBuild @@ -60,12 +60,8 @@ install -D -m0644 data/$PRGNAM.png $PKG/usr/share/pixmaps/$PRGNAM.png mkdir $PKG/usr/share/$PRGNAM/templates cp -a templates/*dvdt templates/*png $PKG/usr/share/$PRGNAM/templates -( 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 || true -) +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true ( cd $PKG/usr/man find . -type f -exec gzip -9 {} \; |