blob: 1473d762ddb447d96bfb4004200550d02a060565 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!perl -I/usr/kde/3.1/share/apps/kdevappwizard/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";
|