
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2729 8e941d3f-bd1b-0410-a28a-d453659cc2b4
28 lines
521 B
Bash
Executable File
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.
|
|
|