lazarus-ccr/examples/bluetooth/create_zip.sh
mgaertner c4ee9e297f added bluetooth
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2729 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2013-04-19 23:58:30 +00:00

28 lines
521 B
Bash
Executable File

#!/usr/bin/env bash
set -e
TmpDir=/tmp/bluetoothlaz
rm -rf $TmpDir
mkdir -p $TmpDir
rsync -av --exclude=".svn" ../bluetooth $TmpDir/
for Ext in ppu o a compiled exe rst zip tgz bak lps;do
find $TmpDir -name "*.$Ext" -exec rm {} \;
done
find $TmpDir -name "*~" -exec rm {} \;
# remove all programs without extension
find . -type f -perm -100 -iregex '.*\/[a-z]+$' -exec rm {} \;
TargetFile=$(pwd)/bluetoothlaz.zip
rm -f $TargetFile
cd $TmpDir
zip -r $TargetFile bluetooth
cd -
echo "Created: $TargetFile"
# end.