diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:41 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:34:41 -0400 |
commit | fc437969bb8bf1b5771b3254fe0140a306ac5a4d (patch) | |
tree | 4ea51f48c029946eacd50bc3ad58e9ce34f84280 /games/sl | |
parent | 9b07f3958974598d23a30e91e5d515b5cd539b41 (diff) | |
download | slackbuilds-fc437969bb8bf1b5771b3254fe0140a306ac5a4d.tar.gz |
games/sl: Fixed for bash4.
Diffstat (limited to 'games/sl')
-rw-r--r-- | games/sl/sl.SlackBuild | 5 | ||||
-rw-r--r-- | games/sl/sl.info | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/games/sl/sl.SlackBuild b/games/sl/sl.SlackBuild index a1ddaa0d2d..81c202f10e 100644 --- a/games/sl/sl.SlackBuild +++ b/games/sl/sl.SlackBuild @@ -75,9 +75,8 @@ mkdir -p $PKG/usr/man # man pages ) # End of manual installation -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null -) +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 {} \; diff --git a/games/sl/sl.info b/games/sl/sl.info index fb337760ce..c0006c7914 100644 --- a/games/sl/sl.info +++ b/games/sl/sl.info @@ -2,9 +2,9 @@ PRGNAM="sl" VERSION="3.03_16" HOMEPAGE="http://www.tkl.iis.u-tokyo.ac.jp/~toyoda/index_e.html" DOWNLOAD="http://ftp.de.debian.org/debian/pool/main/s/sl/sl_3.03.orig.tar.gz \ - http://ftp.de.debian.org/debian/pool/main/s/sl/sl_3.03-16.diff.gz" + http://ftp.de.debian.org/debian/pool/main/s/sl/sl_3.03-16.diff.gz" MD5SUM="d0d997b964bb3478f7f4968eee13c698 \ - c6c20604f3f07e0149108fa5220de4b3" + c6c20604f3f07e0149108fa5220de4b3" DOWNLOAD_x86_64="" MD5SUM_x86_64="" MAINTAINER="V'yacheslav Stetskevych" |