summaryrefslogtreecommitdiffstats
path: root/scripts/mobilecomponents.sh
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2016-04-01 20:11:56 -0500
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-04-01 20:13:33 -0500
commitf19ffb28c6913036e3a15a09976293231b6e3f4b (patch)
tree6fccc4c4639db6b99d162912752265044d82baf5 /scripts/mobilecomponents.sh
parent80bfccdf33e527ff759073d34032a695604e7cf4 (diff)
downloadsubsurface-f19ffb28c6913036e3a15a09976293231b6e3f4b.tar.gz
Minor tweak to script to pull Kirigami
This just allows the script to be used when you are working locally on Kirigami to test changes - no point in waiting for a pull from upstream then. The only goal is to copy the files over. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts/mobilecomponents.sh')
-rwxr-xr-xscripts/mobilecomponents.sh22
1 files changed, 15 insertions, 7 deletions
diff --git a/scripts/mobilecomponents.sh b/scripts/mobilecomponents.sh
index 844d359c3..7300ca2bd 100755
--- a/scripts/mobilecomponents.sh
+++ b/scripts/mobilecomponents.sh
@@ -14,6 +14,10 @@ if [ ! -d "$SRC/subsurface" ] || [ ! -d "qt-mobile" ] || [ ! -d "subsurface-core
exit 1
fi
+if [ "$1" = "-nopull" ] ; then
+ NOPULL=1
+fi
+
# now bring in the latest Kirigami mobile components plus a couple of icons that we need
# first, get the latest from upstream
# yes, this is a bit overkill as we clone a lot of stuff for just a few files, but this way
@@ -24,15 +28,19 @@ cd $SRC
if [ ! -d kirigami ] ; then
git clone git://github.com/KDE/kirigami
fi
-pushd kirigami
-git pull
-popd
+if [ "$NOPULL" = "" ] ; then
+ pushd kirigami
+ git pull
+ popd
+fi
if [ ! -d breeze-icons ] ; then
git clone git://anongit.kde.org/breeze-icons
fi
-pushd breeze-icons
-git pull
-popd
+if [ "$NOPULL" = "" ] ; then
+ pushd breeze-icons
+ git pull
+ popd
+fi
# now copy the components and a couple of icons into plae
MC=$SRC/subsurface/qt-mobile/qml/kirigami
@@ -45,7 +53,7 @@ cp -R $PMMC/* $MC/
cp $PMMC/../fallbacktheme/*qml $MC/
# fix plugin requirement
-sed -i -e 's/^plugin kirigamiplugin/# plugin kirigamiplugin/' $PMMC/kirigami/qmldir
+sed -i -e 's/^plugin kirigamiplugin/# plugin kirigamiplugin/' $MC/qmldir
cp $BREEZE/icons/actions/24/dialog-cancel.svg $MC/icons
cp $BREEZE/icons/actions/24/distribute-horizontal-x.svg $MC/icons