mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	This one will allow people to see the location on a map. Also not implemented, yet. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
		
			
				
	
	
		
			58 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/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
 | 
						|
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
 |