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.
tdesdk/kapptemplate/kapptemplate.module

69 lines
1.5 KiB

###########################################################################
#
# STEP 1: GET USER INFORMATION
#
###########################################################################
# Get the application name
GetProperName
# Get the application version
GetVersion
# Get the root where this framework will be installed
GetLocationRoot
# Get the author's name
GetAuthorName
# Get the author's email
GetAuthorEmail
# Verify that everything is grand
$ECHO;
$ECHO "Here is what I have:";
$ECHO "The app: $APP_NAME v$APP_VERSION";
$ECHO "Installed in: $LOCATION_ROOT";
$ECHO "Author: $AUTHOR <$EMAIL>";
$ECHO;
$ECHO "Is this correct (Y/n)? ";
$ECHO ": \c";
read Y_N;
if [ $Y_N -a $Y_N = 'n' ];
then
$ECHO "AUGH! Well, try again.";
exit 0;
fi
$ECHO;
$ECHO "OK, Here we go!!";
###########################################################################
#
# STEP 2: CREATE APPLICATION FRAMEWORK
#
###########################################################################
CreateAppFramework
###########################################################################
#
# STEP 3: GENERATE APP-SPECIFIC FILES
#
###########################################################################
for EXE_FILE in $KAPP_FILES;
do
. $SHARE_DIR/kapp/$EXE_FILE || exit 1;
done
###########################################################################
#
# STEP 4: FINAL STEPS
#
###########################################################################
if [ ! $NOINIT ]; then
cd $LOCATION_ROOT && $MAKE -f Makefile.cvs
fi
$ECHO "DONE!";