blob: 3ed2602cf652f7f43fec214d50b09e20dc236057 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!perl -I/usr/kde/3.1/share/apps/tdevappwizard/template-common
use gideon;
initGideon();
print "Installing project file\n";
installHTML( "${src}/template-jshello/app.tdevelop", "${dest}/${APPNAMELC}.tdevelop" );
print "Installing application sources\n";
install( "${src}/template-jshello/app.js", "${dest}/${APPNAMELC}.js" );
print "Finished\n";
|