mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-17 23:34:07 +00:00
18 lines
755 B
Text
18 lines
755 B
Text
|
post_install() {
|
||
|
echo "Adding desktop file"
|
||
|
echo "[Desktop Entry]" > /usr/share/applications/fotoxx.desktop
|
||
|
echo "Name=fotoxx" >> /usr/share/applications/fotoxx.desktop
|
||
|
echo "Categories=Graphics" >> /usr/share/applications/fotoxx.desktop
|
||
|
echo "Type=Application" >> /usr/share/applications/fotoxx.desktop
|
||
|
echo "Terminal=false" >> /usr/share/applications/fotoxx.desktop
|
||
|
echo "Exec=/usr/bin/fotoxx" >> /usr/share/applications/fotoxx.desktop
|
||
|
echo "Icon=/usr/share/icons/fotoxx.png" >> /usr/share/applications/fotoxx.desktop
|
||
|
echo "GenericName=Digital Photo Editor" >> /usr/share/applications/fotoxx.desktop
|
||
|
}
|
||
|
post_update() {
|
||
|
post_install
|
||
|
}
|
||
|
pre_remove() {
|
||
|
[ -f /usr/share/applications/fotoxx.desktop ] && rm /usr/share/applications/fotoxx.desktop
|
||
|
}
|