mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
games/sl: Fixed for bash4.
This commit is contained in:
parent
9b07f39589
commit
fc437969bb
2 changed files with 4 additions and 5 deletions
|
@ -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 {} \;
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue