repo.or.cz
/
glAntsMech.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial Import
[glAntsMech.git]
/
octanemech
/
src
/
misc
/
camera
/
package.sh
blob
d95d118beb652c2b2ebd2dc2dfbe24f0c1dce87f
1
#!/bin/sh
2
#
3
4
echo
"Removing SVN files and zipping"
5
6
rm
-rvf
`find ./ -name .svn -print`
7
8
APP_PACKAGE
=
mechcamera_demo
9
DIR_PACKAGE
=
camera
10
11
rm
-rvf
${APP_PACKAGE}
.
tar
.gz
12
tar
-cvf
${APP_PACKAGE}
.
tar
--directory
=
..
/
${DIR_PACKAGE}
13
gzip
${APP_PACKAGE}
.
tar
14
15
# End of Script