Mercurial > hg > audiostuff
annotate intercom/save_ic.sh @ 2:13be24d74cd2
import intercom-0.4.1
author | Peter Meerwald <pmeerw@cosy.sbg.ac.at> |
---|---|
date | Fri, 25 Jun 2010 09:57:52 +0200 |
parents | |
children |
rev | line source |
---|---|
2 | 1 #!/bin/sh |
2 # Name: save_ic.sh | |
3 # Project: VoIP-GS, VoIP intercom | |
4 # Copyright: DFS, Andre Adrian | |
5 # Comment: creates a tarball | |
6 # First Ed: 24oct2004 | |
7 # Version: 23sep2005 | |
8 | |
9 filename=intercom`date +%Y%m%d%H%M`.tgz | |
10 | |
11 tar -cvzf $filename \ | |
12 COPYRIGHT INSTALL README CHANGES Makefile *.txt \ | |
13 *.sh *.c* *.h intercom *.tcl *.ui \ | |
14 ilbc g711 gsm linux g726 \ | |
15 libudp1.0.6.so | |
16 | |
17 # end of file |