libraries/pyfltk: Fixed for bash4.

This commit is contained in:
David Somero 2010-05-19 02:39:04 -04:00
parent 23a4f8aa48
commit 58b432a41a

View file

@ -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