Update script to pull Kirigami

Now with it's own repository and slightly different paths.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2016-03-31 18:10:24 -05:00
parent cc2b815a4d
commit 2069526e74

View file

@ -21,10 +21,10 @@ fi
# as we get closer to shipping a production version we'll likely check out specific tags # as we get closer to shipping a production version we'll likely check out specific tags
# or SHAs from upstream # or SHAs from upstream
cd $SRC cd $SRC
if [ ! -d plasma-mobile ] ; then if [ ! -d kirigami ] ; then
git clone git://github.com/KDE/plasma-mobile git clone git://anongit.kde.org/kirigami.git
fi fi
pushd plasma-mobile pushd kirigami
git pull git pull
popd popd
if [ ! -d breeze-icons ] ; then if [ ! -d breeze-icons ] ; then
@ -35,14 +35,14 @@ git pull
popd popd
# now copy the components and a couple of icons into plae # now copy the components and a couple of icons into plae
MC=$SRC/subsurface/qt-mobile/qml/mobilecomponents MC=$SRC/subsurface/qt-mobile/qml/kirigami
PMMC=plasma-mobile/components/mobilecomponents PMMC=kirigami/src/qml
BREEZE=breeze-icons BREEZE=breeze-icons
rm -rf $MC rm -rf $MC
mkdir -p $MC/icons mkdir -p $MC/icons
cp -R $PMMC/qml/* $MC/ cp -R $PMMC/* $MC/
cp $PMMC/fallbacktheme/*qml $MC/ cp $PMMC/../fallbacktheme/*qml $MC/
cp $BREEZE/icons/actions/24/dialog-cancel.svg $MC/icons cp $BREEZE/icons/actions/24/dialog-cancel.svg $MC/icons
cp $BREEZE/icons/actions/24/distribute-horizontal-x.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/22/gps.svg $MC/icons
cp $BREEZE/icons/actions/24/trash-empty.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