-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsourcetar
executable file
·49 lines (37 loc) · 1.12 KB
/
sourcetar
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/bash
PROJECT=flexc++
cd ~/git/${PROJECT}/src
# load the version
VERSION=`grep VERSION ${PROJECT}/VERSION |
sed 's/#define[[:space:]]\+VERSION[[:space:]]\+"\([^"]*\).*/\1/'`
DISTRIBUTION=${PROJECT}-${VERSION} # define the distribution's dir name
tgz()
{
ln -s ${PROJECT} ${DISTRIBUTION} # distribution's dir name
tar czvf $1 --exclude-from=excluded ${DISTRIBUTION}/*
rm ${DISTRIBUTION} # rm the link
}
case "$1" in
(d)
tgz ../tarballs/${PROJECT}_${VERSION}.orig.tar.gz
;;
(l|o)
tgz ${PROJECT}_${VERSION}.tar.gz
if [ "$1" == "o" ]
then
scp ${PROJECT}_${VERSION}.tar.gz \
oosix:git/${PROJECT}/tarballs/${PROJECT}_${VERSION}.orig.tar.gz
rm ${PROJECT}_${VERSION}.tar.gz
fi
;;
(*)
echo "
Provide arg:
d (debian) to create a local .orig.tar.gz archive in
../tarballs
l (local) to create ${PROJECT}_${VERSION}.tar.gz in this directory
o (oosix) same as 'l', but upload to oosix (IUO)
"
exit 1
;;
esac