mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
python/thonny: Replaced backtick cmdsub.
Signed-off-by: B. Watson <urchlay@slackware.uk> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
94dcda97da
commit
8628b3ba39
1 changed files with 2 additions and 2 deletions
|
@ -78,8 +78,8 @@ python3 setup.py install --root=$PKG
|
|||
mkdir -p $PKG/usr/share/applications
|
||||
cp -a packaging/linux/org.thonny.Thonny.desktop $PKG/usr/share/applications/$PRGNAM.desktop
|
||||
mkdir -p $PKG/usr/share/icons/hicolor/{16x16,22x22,32x32,48x48,64x64,128x128,192x192,256x256}/apps
|
||||
for i in `ls packaging/icons/$PRGNAM-*x*.png`; do
|
||||
IDIR=`echo $i|awk -F"-" '{print $2}'|awk -F"." '{print $1}'`
|
||||
for i in $( ls packaging/icons/$PRGNAM-*x*.png ); do
|
||||
IDIR=$( echo $i|awk -F"-" '{print $2}'|awk -F"." '{print $1}' )
|
||||
cp -a $i $PKG/usr/share/icons/hicolor/$IDIR/apps/$PRGNAM.png
|
||||
done
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
|
|
Loading…
Reference in a new issue