#!/usr/bin/perl

use kdevelop;

initKDevelop();
installFileTemplate();
installLicense();
#installIncAdmin();
installGNU();

print "Installing project file\n";
install( "${src}/template-haskellhello/app.kdevelop",    "${dest}/${APPNAMELC}.kdevelop" );

print "Installing application framework\n";
mkdir( "${dest}/src", 0777 );

print "Installing application sources\n";
install( "${src}/template-haskellhello/Main.hs",          "${dest}/src/${APPNAMELC}.hs" );

print "Finished\n";

