File: bundle-all.sh

package info (click to toggle)
qmapshack 1.20.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 119,232 kB
  • sloc: cpp: 517,651; sh: 1,456; xml: 500; python: 180; makefile: 12; ansic: 1
file content (17 lines) | stat: -rwxr-xr-x 488 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

source $QMSDEVDIR/qmapshack/MacOSX/config.sh   # check for important paramters

# Bundling QMapShack and QMapTool
echo "${INFO}Bundle QMapShack ...${NC}"
mkdir -p $BUILD_RELEASE_DIR
cd $SRC_OSX_DIR
source ./bundle-qmapshack.sh
cd $SRC_OSX_DIR
source ./bundle-qmaptool.sh
echo "${INFO}Find QMapShack.app and QMapTool.app in $BUILD_RELEASE_DIR${NC}"

echo "${ATTN}You can clean up build artifacts by running${NC}"
echo "${ATTN}sh $SRC_OSX_DIR/clean.sh clean${NC}"

cd $QMSDEVDIR