mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Add helper script to pull Plasma Mobile Components and icons
Normally this is done in the build.sh script when building Subsurface-mobile - but some people might have set up their build enviroment differently and for them this allows to pull (and update) these components from upstream without having to run build.sh Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
a13fa83046
commit
c496d5fa05
1 changed files with 55 additions and 0 deletions
55
scripts/mobilecomponents.sh
Executable file
55
scripts/mobilecomponents.sh
Executable file
|
@ -0,0 +1,55 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# if you run the build.sh script to build Subsurface you'll never need
|
||||
# this, but if you build your binaries differently for some reason and
|
||||
# you want to build Subsurface-mobile, running this from within the
|
||||
# checked out source directory (not your build directory) should do the
|
||||
# trick - you can also run this to update to the latest upstream when
|
||||
# you don't want to rerun the whole build.sh script.
|
||||
|
||||
SRC=$(cd .. ; pwd)
|
||||
|
||||
if [ ! -d "$SRC/subsurface" ] || [ ! -d "qt-mobile" ] || [ ! -d "subsurface-core" ] ; then
|
||||
echo "please start this script from the Subsurface source directory (which needs to be named \"subsurface\")."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# now bring in the latest Plasma-mobile 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
|
||||
# we stop having to manually merge our code with upstream all the time
|
||||
# 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
|
||||
fi
|
||||
pushd plasma-mobile
|
||||
git pull
|
||||
popd
|
||||
if [ ! -d breeze-icons ] ; then
|
||||
git clone git://anongit.kde.org/breeze-icons
|
||||
fi
|
||||
pushd breeze-icons
|
||||
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
|
||||
BREEZE=breeze-icons
|
||||
|
||||
rm -rf $MC
|
||||
mkdir -p $MC/icons
|
||||
cp -R $PMMC/qml/* $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
|
||||
cp $BREEZE/icons/actions/24/document-edit.svg $MC/icons
|
||||
cp $BREEZE/icons/actions/24/document-save.svg $MC/icons
|
||||
cp $BREEZE/icons/actions/24/go-next.svg $MC/icons
|
||||
cp $BREEZE/icons/actions/24/go-previous.svg $MC/icons
|
||||
cp $BREEZE/icons/actions/16/view-readermode.svg $MC/icons
|
||||
|
||||
echo org.kde.plasma.mobilecomponents synced from upstream
|
Loading…
Reference in a new issue