mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
libraries/pyfltk: Fixed for bash4.
This commit is contained in:
parent
23a4f8aa48
commit
58b432a41a
1 changed files with 2 additions and 4 deletions
|
@ -70,10 +70,8 @@ python setup.py build
|
|||
# --install-data= flag is ignored now
|
||||
python setup.py install --prefix=/usr/ --root=$PKG
|
||||
|
||||
( cd $PKG
|
||||
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/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
|
Loading…
Reference in a new issue