Magellan Linux

Contents of /trunk/libsrtp/make-git-snapshot.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2213 - (show annotations) (download) (as text)
Tue Jun 18 06:50:15 2013 UTC (10 years, 10 months ago) by niro
File MIME type: application/x-sh
File size: 436 byte(s)
-added git snapshot script
1 #!/bin/sh
2
3 # Usage: ./make-git-snapshot.sh [COMMIT]
4 #
5 # to make a snapshot of the given tag/branch. Defaults to HEAD.
6
7 DIRNAME=libsrtp-1.4.4_git$( date +%Y%m%d )
8
9 echo DIRNAME ${DIRNAME}
10 echo HEAD ${1:-HEAD}
11
12 rm -rf ${DIRNAME}
13
14 # checkout mplayer
15 git clone git://git.linphone.org/srtp.git ${DIRNAME}
16
17 GIT_DIR=${DIRNAME}/.git git archive --format=tar --prefix=${DIRNAME}/ ${1:-HEAD} \
18 | bzip2 > ${DIRNAME}.tar.bz2
19
20 # rm -rf ${DIRNAME}