You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tde-packaging/opensuse/gentarball

58 lines
1.2 KiB

#!/bin/bash
VERSION=$1
if [ "$1" == "" ]; then
VERSION=3.5.12.99
fi
createTarball()
{
cp -r $NAME $NAME-$VERSION
tar cjf $NAME-$VERSION.tar.bz2 $NAME-$VERSION
rm -rf $NAME-$VERSION
}
grabDepends()
{
svn export svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/$NAME
createTarball
rm -rf $NAME
echo "done"
}
echo "I need to know what you want to generate a tarball for."
echo ""
echo "Version is set to $VERSION. If you want to change it,"
echo "please pass it as a parameter to this script."
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
clear
echo "Dependencies: Select what you want us to generate."
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
grabDepends
else
echo "Invalid, bye." && exit 1
fi