blob: 28be14a9ea9deaa9053a4573ae04f0bb3e6b9e7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
echo "############### common-qt5.post ################"
list='
qt5-qtdeclarative-examples
qt5-cinematic-experience
'
dst="/usr/share/applications/tizen/launcher.conf"
if [ -w "$dst" ] ; then
for app in $list ; do
src="/usr/share/applications/$app.desktop"
grep "$src" "$dst" \
|| { [ ! -r "$src" ] || echo "$src" >> "$dst" ; }
done
fi
|