mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-03 11:24:10 +01:00
52b720a2e1
OpenPilot-20121211-15ef4d9f-win32.exe OpenPilot-20121211-15ef4d9f-amd64.deb OpenPilot-20121211-15ef4d9f-i386.deb OpenPilot-20121211-15ef4d9f-osx.dmg
44 lines
1.4 KiB
Bash
Executable File
44 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# the following environment variables must be set
|
|
: ${ROOT_DIR?} ${BUILD_DIR?} ${PACKAGE_LBL?} ${PACKAGE_DIR?} ${FW_DIR?} ${PACKAGE_NAME?} ${PACKAGE_SEP?}
|
|
|
|
# more variables
|
|
APP_PATH="${BUILD_DIR}/ground/openpilotgcs/bin/OpenPilot GCS.app"
|
|
TEMP_FILE="${PACKAGE_DIR}/OpenPilot-temp.dmg"
|
|
OUT_FILE="${PACKAGE_DIR}/../${PACKAGE_NAME}${PACKAGE_SEP}${PACKAGE_LBL}${PACKAGE_SEP}osx.dmg"
|
|
VOL_NAME="OpenPilot"
|
|
|
|
# prepare the stage
|
|
rm -f "${TEMP_FILE}"
|
|
rm -f "${OUT_FILE}"
|
|
|
|
hdiutil convert "${ROOT_DIR}/package/osx/OpenPilot.dmg" \
|
|
-format UDRW -o "${TEMP_FILE}"
|
|
device=$(hdiutil attach "${TEMP_FILE}" | \
|
|
egrep '^/dev/' | sed 1q | awk '{print $1}')
|
|
|
|
# packaging goes here
|
|
cp -r "${APP_PATH}" "/Volumes/${VOL_NAME}"
|
|
#cp -r "${FW_DIR}" "/Volumes/${VOL_NAME}/firmware"
|
|
cp "${FW_DIR}/fw_coptercontrol-${PACKAGE_LBL}.opfw" "/Volumes/${VOL_NAME}/Firmware"
|
|
cp "${FW_DIR}/fw_pipxtreme-${PACKAGE_LBL}.opfw" "/Volumes/${VOL_NAME}/Firmware"
|
|
|
|
cp "${BUILD_DIR}/uavobject-synthetics/matlab/OPLogConvert.m" "/Volumes/${VOL_NAME}/Utilities"
|
|
|
|
cp "${ROOT_DIR}/HISTORY.txt" "/Volumes/${VOL_NAME}"
|
|
|
|
"${ROOT_DIR}/package/osx/libraries" \
|
|
"/Volumes/${VOL_NAME}/OpenPilot GCS.app" || exit 1
|
|
|
|
hdiutil detach ${device}
|
|
|
|
min=`hdiutil resize ${TEMP_FILE} | awk \{print\ \$\1\}`
|
|
echo "Resizing dmg to ${min}"
|
|
|
|
hdiutil resize -sectors ${min} ${TEMP_FILE}
|
|
hdiutil convert "${TEMP_FILE}" -format UDZO -o "${OUT_FILE}"
|
|
|
|
# cleanup
|
|
rm "${TEMP_FILE}"
|