mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
libraries/pygame: Fixed for bash4.
This commit is contained in:
parent
58b432a41a
commit
e360b555c7
1 changed files with 2 additions and 6 deletions
|
@ -29,12 +29,8 @@ chmod -R u+w,go+r-w,a-s .
|
|||
python -u config.py || exit 1
|
||||
python setup.py install --root=$PKG
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
|
||||
xargs strip --strip-unneeded 2> /dev/null
|
||||
find . | xargs file | grep "shared object" | 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
|
||||
|
||||
mkdir -p $PKG/usr/doc/$NAME-$VERSION
|
||||
cp -a PKG-INFO WHATSNEW install.html readme.txt docs/* examples \
|
||||
|
|
Loading…
Reference in a new issue