summaryrefslogtreecommitdiffstats
path: root/opensuse/gentarball
blob: 593539a5a151c89e6209ecc1317862151ed17640 (plain)
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

VERSION=$1
if [ "$1" == "" ]; then
VERSION=3.5.12.99
fi

grabDependsTarball()
{
svn export svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/$NAME
mv -v $NAME $NAME-$VERSION
tar cjf $NAME-$VERSION.tar.bz2 $NAME-$VERSION
rm -rf $NAME-$VERSION
echo "done"
}


echo "This is for testing locally without services."
echo "I need to know what tarball you want to generate from."
echo ""
echo "Let's start off by dependencies, main, or apps."
echo "Which one?"
echo ""
echo "(1) dependencies"
echo "(2) main"
echo "(3) applications"
echo -e "> "
read SELECTION

if [ "$SELECTION" = "1" ]; then
	echo "(1) libtqt4"
	echo "(2) dbus-1-tqt"
	echo "(3) libdbus-1-tqt-0"
	echo "(4) arts"
	read CHOICE
	
	if [ "$CHOICE" = "1" ]; then NAME='tqtinterface';
	elif [ "$CHOICE" = "2" ]; then NAME='dbus-tqt';
	elif [ "$CHOICE" = "3" ]; then NAME='dbus-1-tqt';
	elif [ "$CHOICE" = "4" ]; then NAME='arts';
	else
	echo "Invalid, bye." && exit 1
	fi
	grabDependsTarball
else
	echo "Invalid, bye." && exit 1
fi