summaryrefslogtreecommitdiffstats
path: root/scripts/mobilecomponents.sh
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2016-03-31 18:10:24 -0500
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-03-31 18:43:58 -0500
commit2069526e74505e873140f7be35871db7acbc084d (patch)
tree72659a9c1b913220edaa63317e3571a6341917fa /scripts/mobilecomponents.sh
parentcc2b815a4d86f5373c32351a20edaa9dff797921 (diff)
downloadsubsurface-2069526e74505e873140f7be35871db7acbc084d.tar.gz
Update script to pull Kirigami
Now with it's own repository and slightly different paths. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts/mobilecomponents.sh')
-rwxr-xr-xscripts/mobilecomponents.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/scripts/mobilecomponents.sh b/scripts/mobilecomponents.sh
index 590481468..0ead42258 100755
--- a/scripts/mobilecomponents.sh
+++ b/scripts/mobilecomponents.sh
@@ -21,10 +21,10 @@ fi
# as we get closer to shipping a production version we'll likely check out specific tags
# or SHAs from upstream
cd $SRC
-if [ ! -d plasma-mobile ] ; then
- git clone git://github.com/KDE/plasma-mobile
+if [ ! -d kirigami ] ; then
+ git clone git://anongit.kde.org/kirigami.git
fi
-pushd plasma-mobile
+pushd kirigami
git pull
popd
if [ ! -d breeze-icons ] ; then
@@ -35,14 +35,14 @@ git pull
popd
# now copy the components and a couple of icons into plae
-MC=$SRC/subsurface/qt-mobile/qml/mobilecomponents
-PMMC=plasma-mobile/components/mobilecomponents
+MC=$SRC/subsurface/qt-mobile/qml/kirigami
+PMMC=kirigami/src/qml
BREEZE=breeze-icons
rm -rf $MC
mkdir -p $MC/icons
-cp -R $PMMC/qml/* $MC/
-cp $PMMC/fallbacktheme/*qml $MC/
+cp -R $PMMC/* $MC/
+cp $PMMC/../fallbacktheme/*qml $MC/
cp $BREEZE/icons/actions/24/dialog-cancel.svg $MC/icons
cp $BREEZE/icons/actions/24/distribute-horizontal-x.svg $MC/icons
@@ -55,4 +55,4 @@ cp $BREEZE/icons/actions/24/application-menu.svg $MC/icons
cp $BREEZE/icons/actions/22/gps.svg $MC/icons
cp $BREEZE/icons/actions/24/trash-empty.svg $MC/icons
-echo org.kde.plasma.mobilecomponents synced from upstream
+echo org.kde.plasma.kirigami synced from upstream