blob: d3a808c56dc74a187386ab122d8fb43d431d8292 (
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.kdevelop", "${dest}/${APPNAMELC}.kdevelop" );
print "Installing application sources\n";
install( "${src}/template-jshello/app.js", "${dest}/${APPNAMELC}.js" );
print "Finished\n";
|