You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
334 B
14 lines
334 B
15 years ago
|
#!/bin/sh
|
||
|
# Clean build directories
|
||
|
rm -rf linux
|
||
|
mkdir -p linux
|
||
|
# Change to build directory and compile application
|
||
|
cd ..
|
||
|
make -j4
|
||
|
# Copy and build the application bundle
|
||
|
cd deploy
|
||
|
cp -r qgroundcontrol linux/.
|
||
|
cp -r ../audio linux/.
|
||
|
# FIXME Create debian packet
|
||
|
echo -e '\n QGroundControl Debian packet is now ready for publishing\n'
|