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.
18 lines
731 B
Bash
18 lines
731 B
Bash
#!/bin/sh
|
|
|
|
BASEDIR=".." # root of translatable sources
|
|
PROJECT="plasma_applet_org.kde.store.nowdock.panel" # project name
|
|
PROJECTPATH="../../containment" # project path
|
|
PROJECTPATHPLASMOID="../../plasmoid" # project path
|
|
BUGADDR="https://github.com/psifidotos/nowdock-panel/" # MSGID-Bugs
|
|
WDIR="`pwd`/containment" # working dir
|
|
|
|
cd containment
|
|
intltool-merge --quiet --desktop-style . ../../containment.metadata.desktop.template "${PROJECTPATH}"/metadata.desktop.cmake
|
|
echo "metadata.desktop files for panel were updated..."
|
|
|
|
cd ../plasmoid
|
|
intltool-merge --quiet --desktop-style . ../../plasmoid.metadata.desktop.template "${PROJECTPATHPLASMOID}"/metadata.desktop.cmake
|
|
echo "metadata.desktop files for plasmoid were updated..."
|
|
|