You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
PROJECTPATHCONTAINMENT="../../containment" # containment path
|
|
|
|
PROJECTPATHPLASMOID="../../plasmoid" # plasmoid path
|
|
|
|
PROJECTPATHSHELL="../../shell" # shell path
|
|
|
|
PROJECTPATHAPP="../../app" # app path
|
|
|
|
BUGADDR="https://github.com/psifidotos/latte-dock/" # MSGID-Bugs
|
|
|
|
|
|
|
|
|
|
|
|
cd containment
|
|
|
|
intltool-merge --quiet --desktop-style . ../../containment.metadata.desktop.template "${PROJECTPATHCONTAINMENT}"/metadata.desktop.cmake
|
|
|
|
echo "metadata.desktop file for containment was updated..."
|
|
|
|
|
|
|
|
cd ../plasmoid
|
|
|
|
intltool-merge --quiet --desktop-style . ../../plasmoid.metadata.desktop.template "${PROJECTPATHPLASMOID}"/metadata.desktop.cmake
|
|
|
|
echo "metadata.desktop file for plasmoid was updated..."
|
|
|
|
|
|
|
|
cd ../shell
|
|
|
|
intltool-merge --quiet --desktop-style . ../../shell.metadata.desktop.template "${PROJECTPATHSHELL}"/metadata.desktop.cmake
|
|
|
|
echo "metadata.desktop file for shell was updated..."
|
|
|
|
|
|
|
|
cd ../app
|
|
|
|
intltool-merge --quiet --desktop-style . ../../latte-dock.desktop.template "${PROJECTPATHAPP}"/latte-dock.desktop
|
|
|
|
echo "latte-dock.desktop file for app was updated..."
|
|
|
|
|
|
|
|
|